Add GNU xorriso, which supersedes GNU mkisofs.
svn path=/nixpkgs/trunk/; revision=25703
This commit is contained in:
parent
68de75825e
commit
e49a8a1807
@ -1,25 +0,0 @@
|
|||||||
{ 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;
|
|
||||||
};
|
|
||||||
}
|
|
36
pkgs/tools/cd-dvd/xorriso/default.nix
Normal file
36
pkgs/tools/cd-dvd/xorriso/default.nix
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{ fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "xorriso-1.0.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnu/xorriso/${name}.tar.gz";
|
||||||
|
sha256 = "0kswdvncyhc4zsmydpv0k8pkjg4b5bswvsq2lnl0m7jlf8n0iwlz";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = true;
|
||||||
|
|
||||||
|
buildInputs = [ libcdio zlib bzip2 readline ]
|
||||||
|
++ stdenv.lib.optional stdenv.isLinux acl;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "GNU xorriso, an ISO 9660 Rock Ridge file system manipulator";
|
||||||
|
|
||||||
|
longDescription =
|
||||||
|
'' GNU xorriso copies file objects from POSIX compliant filesystems
|
||||||
|
into Rock Ridge enhanced ISO 9660 filesystems and allows
|
||||||
|
session-wise manipulation of such filesystems. It can load the
|
||||||
|
management information of existing ISO images and it writes the
|
||||||
|
session results to optical media or to filesystem objects. Vice
|
||||||
|
versa xorriso is able to copy file objects out of ISO 9660
|
||||||
|
filesystems.
|
||||||
|
'';
|
||||||
|
|
||||||
|
license = "GPLv3+";
|
||||||
|
|
||||||
|
homepage = http://www.gnu.org/software/xorriso/;
|
||||||
|
|
||||||
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -884,8 +884,6 @@ let
|
|||||||
|
|
||||||
mjpegtools = callPackage ../tools/video/mjpegtools { };
|
mjpegtools = callPackage ../tools/video/mjpegtools { };
|
||||||
|
|
||||||
mkisofs = callPackage ../tools/cd-dvd/mkisofs { };
|
|
||||||
|
|
||||||
mktemp = callPackage ../tools/security/mktemp { };
|
mktemp = callPackage ../tools/security/mktemp { };
|
||||||
|
|
||||||
mldonkey = callPackage ../applications/networking/p2p/mldonkey { };
|
mldonkey = callPackage ../applications/networking/p2p/mldonkey { };
|
||||||
@ -1469,6 +1467,8 @@ let
|
|||||||
inherit python setuptools;
|
inherit python setuptools;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
xorriso = callPackage ../tools/cd-dvd/xorriso { };
|
||||||
|
|
||||||
xpf = callPackage ../tools/text/xml/xpf {
|
xpf = callPackage ../tools/text/xml/xpf {
|
||||||
libxml2 = libxml2Python;
|
libxml2 = libxml2Python;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user