2011-01-27 21:12:28 +01:00
|
|
|
{ fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-07-04 13:52:41 +02:00
|
|
|
name = "xorriso-1.1.0.pl01";
|
2011-01-27 21:12:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnu/xorriso/${name}.tar.gz";
|
2011-07-04 13:52:41 +02:00
|
|
|
sha256 = "0718p8acgn46zms0672xlaxav1acj79wsy5yif6gai5s62zw18l9";
|
2011-01-27 21:12:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|