Add GNU mkisofs.
svn path=/nixpkgs/trunk/; revision=19603
This commit is contained in:
parent
b14e1f31c9
commit
16dec99054
25
pkgs/tools/cd-dvd/mkisofs/default.nix
Normal file
25
pkgs/tools/cd-dvd/mkisofs/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ fetchurl, stdenv, gettext }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "mkisofs-1.13";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnu/isofsmk/${name}.tar.gz";
|
||||||
|
sha256 = "13f8zynl64aaqjgxf0m1m2gbizdh7ndicg5d1bm6s0x97bqifrfn";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ gettext ];
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://savannah.gnu.org/projects/isofsmk;
|
||||||
|
|
||||||
|
description = "GNU mkisofs, an ISO 9660 filesystem builder";
|
||||||
|
|
||||||
|
license = "GPLv3+";
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -1031,6 +1031,10 @@ let
|
|||||||
inherit (xlibs) libX11;
|
inherit (xlibs) libX11;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
mkisofs = import ../tools/cd-dvd/mkisofs {
|
||||||
|
inherit fetchurl stdenv gettext;
|
||||||
|
};
|
||||||
|
|
||||||
mktemp = import ../tools/security/mktemp {
|
mktemp = import ../tools/security/mktemp {
|
||||||
inherit fetchurl stdenv;
|
inherit fetchurl stdenv;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user