python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / cd-dvd / xorriso / default.nix
blob2dd1b24adbbad9d69e4774d050349d3b91bf7df9
1 { fetchurl, lib, stdenv, libcdio, zlib, bzip2, readline, acl, attr, libiconv }:
3 stdenv.mkDerivation rec {
4   pname = "xorriso";
5   version = "1.5.4.pl02";
7   src = fetchurl {
8     url = "mirror://gnu/xorriso/xorriso-${version}.tar.gz";
9     sha256 = "sha256-Psc5PUqdy/X3QwnCikFfVSJ+xidwuVrpk6yNejsVKXI=";
10   };
12   doCheck = true;
14   buildInputs = [ libcdio zlib bzip2 readline libiconv ]
15     ++ lib.optionals stdenv.isLinux [ acl attr ];
17   meta = with lib; {
18     description = "ISO 9660 Rock Ridge file system manipulator";
20     longDescription =
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
27          filesystems.
28       '';
30     license = licenses.gpl3Plus;
32     homepage = "https://www.gnu.org/software/xorriso/";
34     maintainers = [ maintainers.vrthra ];
35     platforms = platforms.unix;
36   };