Skip to content

Commit

Permalink
nrg2iso: init at 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rardiol authored and dezgeg committed Dec 21, 2016
1 parent 4a795af commit 44a8fb9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
23 changes: 23 additions & 0 deletions pkgs/tools/cd-dvd/nrg2iso/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 44a8fb9

Please sign in to comment.