13 stdenv.mkDerivation (finalAttrs: {
18 url = "https://www.gnu.org/software/xorriso/xorriso-${finalAttrs.version}.tar.gz";
19 hash = "sha256-hnV3w4f2tKmjIk60Qd7Y+xY432y8Bg+NGh5dAPMY9QI=";
29 ++ lib.optionals stdenv.isLinux [
34 outputs = [ "out" "man" ];
36 env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-include unistd.h";
43 homepage = "https://www.gnu.org/software/xorriso/";
44 description = "ISO 9660 Rock Ridge file system manipulator";
46 GNU xorriso copies file objects from POSIX compliant filesystems into Rock
47 Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation
48 of such filesystems. It can load the management information of existing
49 ISO images and it writes the session results to optical media or to
51 Vice versa xorriso is able to copy file objects out of ISO 9660
54 license = lib.licenses.gpl3Plus;
55 mainProgram = "xorriso";
56 maintainers = [ lib.maintainers.AndersonTorres ];
57 platforms = lib.platforms.unix;