about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/libcdio
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/libcdio')
-rw-r--r--nixpkgs/pkgs/development/libraries/libcdio/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/libcdio/default.nix b/nixpkgs/pkgs/development/libraries/libcdio/default.nix
new file mode 100644
index 000000000000..e4522bf00be8
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/libcdio/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchurl, libcddb, pkgconfig, ncurses, help2man, libiconv, Carbon, IOKit }:
+
+stdenv.mkDerivation rec {
+  name = "libcdio-2.1.0";
+
+  src = fetchurl {
+    url = "mirror://gnu/libcdio/${name}.tar.bz2";
+    sha256 = "0avi6apv5ydjy6b9c3z9a46rvp5i57qyr09vr7x4nndxkmcfjl45";
+  };
+
+  postPatch = ''
+    patchShebangs .
+  '';
+
+  nativeBuildInputs = [ pkgconfig ];
+  buildInputs = [ libcddb ncurses help2man ]
+    ++ stdenv.lib.optionals stdenv.isDarwin [ libiconv Carbon IOKit ];
+
+  doCheck = !stdenv.isDarwin;
+
+  meta = with stdenv.lib; {
+    description = "A library for OS-independent CD-ROM and CD image access";
+    longDescription = ''
+      GNU libcdio is a library for OS-independent CD-ROM and
+      CD image access.  It includes a library for working with
+      ISO-9660 filesystems (libiso9660), as well as utility
+      programs such as an audio CD player and an extractor.
+    '';
+    homepage = "https://www.gnu.org/software/libcdio/";
+    license = licenses.gpl2Plus;
+    platforms = platforms.linux ++ platforms.darwin;
+  };
+}