1 { fetchurl, lib, stdenv, libcdio, zlib, bzip2, readline, acl, attr, libiconv }:
3 stdenv.mkDerivation rec {
5 version = "1.5.4.pl02";
8 url = "mirror://gnu/xorriso/xorriso-${version}.tar.gz";
9 sha256 = "sha256-Psc5PUqdy/X3QwnCikFfVSJ+xidwuVrpk6yNejsVKXI=";
14 buildInputs = [ libcdio zlib bzip2 readline libiconv ]
15 ++ lib.optionals stdenv.isLinux [ acl attr ];
18 description = "ISO 9660 Rock Ridge file system manipulator";
21 '' GNU xorriso copies file objects from POSIX compliant filesystems
22 into Rock Ridge enhanced ISO 9660 filesystems and allows
23 session-wise manipulation of such filesystems. It can load the
24 management information of existing ISO images and it writes the
25 session results to optical media or to filesystem objects. Vice
26 versa xorriso is able to copy file objects out of ISO 9660
30 license = licenses.gpl3Plus;
32 homepage = "https://www.gnu.org/software/xorriso/";
34 maintainers = [ maintainers.vrthra ];
35 platforms = platforms.unix;