nrg2iso: init at 0.4.0

This commit is contained in:
Ricardo Ardissone 2016-12-21 10:45:19 -02:00 committed by Tuomas Tynkkynen
parent 4a795afdbc
commit 44a8fb956e
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,23 @@
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "nrg2iso-${version}";
version = "0.4";
src = fetchurl {
url = "gregory.kokanosky.free.fr/v4/linux/${name}.tar.gz";
sha256 = "18sam7yy50rbfhjixwd7wx7kmfn1x1y5j80vwfxi5v408s39s115";
};
installPhase = ''
mkdir -pv $out/bin/
cp -v nrg2iso $out/bin/nrg2iso
'';
meta = with stdenv.lib; {
description = "A linux utils for converting CD (or DVD) image generated by Nero Burning Rom to ISO format";
homepage = http://gregory.kokanosky.free.fr/v4/linux/nrg2iso.en.html;
license = licenses.gpl2;
platforms = platforms.linux;
};
}

View file

@ -1099,6 +1099,8 @@ in
mdf2iso = callPackage ../tools/cd-dvd/mdf2iso { };
nrg2iso = callPackage ../tools/cd-dvd/nrg2iso { };
libceph = ceph.lib;
ceph = callPackage ../tools/filesystems/ceph { boost = boost159; };
ceph-dev = ceph;