nixpkgs/pkgs/tools/cd-dvd/xorriso/default.nix
Lancelot SIX ea1afcd9f4 xorriso: 1.4.4 -> 1.4.6
See http://lists.gnu.org/archive/html/info-gnu/2016-09/msg00010.html
for release announcement

[Bjørn: remove "pkgs." from commit message subject.]
2016-09-20 15:51:36 +02:00

37 lines
1.1 KiB
Nix

{ fetchurl, stdenv, libcdio, zlib, bzip2, readline, acl, attr }:
stdenv.mkDerivation rec {
name = "xorriso-1.4.6";
src = fetchurl {
url = "mirror://gnu/xorriso/${name}.tar.gz";
sha256 = "112p0ghwzxrcjbsir1n2jxhq103ckrw93wzvd55qqvzfgs674vsj";
};
doCheck = true;
buildInputs = [ libcdio zlib bzip2 readline attr ]
++ stdenv.lib.optional stdenv.isLinux acl;
meta = with stdenv.lib; {
description = "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 = licenses.gpl3Plus;
homepage = http://www.gnu.org/software/xorriso/;
maintainers = [ maintainers.vrthra ];
platforms = platforms.unix;
};
}