about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/cdrtools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/misc/cdrtools/default.nix')
-rw-r--r--nixpkgs/pkgs/applications/misc/cdrtools/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/misc/cdrtools/default.nix b/nixpkgs/pkgs/applications/misc/cdrtools/default.nix
new file mode 100644
index 000000000000..3738fb83c705
--- /dev/null
+++ b/nixpkgs/pkgs/applications/misc/cdrtools/default.nix
@@ -0,0 +1,37 @@
+{ stdenv, fetchurl, acl, libcap }:
+
+stdenv.mkDerivation rec {
+  name = "cdrtools-${version}";
+  version = "3.02a06";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/cdrtools/${name}.tar.bz2";
+    sha256 = "1cayhfbhj5g2vgmkmq5scr23k0ka5fsn0dhn0n9yllj386csnygd";
+  };
+
+  patches = [ ./fix-paths.patch ];
+
+  buildInputs = [ acl libcap ];
+
+  postPatch = ''
+    sed "/\.mk3/d" -i libschily/Targets.man
+    substituteInPlace man/Makefile --replace "man4" ""
+  '';
+
+  dontConfigure = true;
+
+  GMAKE_NOWARN = true;
+
+  makeFlags = [ "INS_BASE=/" "INS_RBASE=/" "DESTDIR=$(out)" ];
+
+  meta = with stdenv.lib; {
+    homepage = https://sourceforge.net/projects/cdrtools/;
+    description = "Highly portable CD/DVD/BluRay command line recording software";
+    license = with licenses; [ gpl2 lgpl2 cddl ];
+    platforms = platforms.linux;
+    # Licensing issues: This package contains code licensed under CDDL, GPL2
+    # and LGPL2. There is a debate regarding the legality of distributing this
+    # package in binary form.
+    hydraPlatforms = [];
+  };
+}