ma pkgs.cue2pops: init

This commit is contained in:
makefu 2018-01-04 02:14:36 +01:00
parent f6f01faa3a
commit ba42be899d
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 25 additions and 0 deletions

View File

@ -4,5 +4,6 @@
opl-utils
hdl-dump
bin2iso
cue2pops
];
}

View 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;
};
}