ma pkgs.cue2pops: init
This commit is contained in:
parent
f6f01faa3a
commit
ba42be899d
@ -4,5 +4,6 @@
|
|||||||
opl-utils
|
opl-utils
|
||||||
hdl-dump
|
hdl-dump
|
||||||
bin2iso
|
bin2iso
|
||||||
|
cue2pops
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
24
makefu/5pkgs/cue2pops/default.nix
Normal file
24
makefu/5pkgs/cue2pops/default.nix
Normal file
@ -0,0 +1,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;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user