summaryrefslogtreecommitdiffstats
path: root/makefu/5pkgs/cue2pops/default.nix
blob: 218ae83079dca3f2f208afa8434682df3867b659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, lib, pkgs, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "cue2pops";
  version = "2";
  name = "${pname}-${version}";

  src = fetchFromGitHub {
    owner = "makefu";
    repo = "cue2pops-linux";
    rev = "541863a";
    sha256 = "05w84726g3k33rz0wwb9v77g7xh4cnhy9sxlpilf775nli9bynrk";
  };

  installPhase = ''
    install -Dm755 $pname $out/bin/$pname
  '';

  meta = {
    homepage = http://users.eastlink.ca/~doiron/bin2iso/ ;
    description = "converts bin+cue to iso";
    license = lib.licenses.gpl3;
  };
}