summary refs log tree commit diff
path: root/pkgs/tools/cd-dvd/cuetools/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/cd-dvd/cuetools/default.nix')
-rw-r--r--pkgs/tools/cd-dvd/cuetools/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/tools/cd-dvd/cuetools/default.nix b/pkgs/tools/cd-dvd/cuetools/default.nix
new file mode 100644
index 000000000000..7de503adc074
--- /dev/null
+++ b/pkgs/tools/cd-dvd/cuetools/default.nix
@@ -0,0 +1,22 @@
+{stdenv, fetchurl, automake, autoconf, flex, bison }:
+
+stdenv.mkDerivation {
+  name = "cuetools-1.3.1";
+
+  src = fetchurl {
+    url = https://github.com/svend/cuetools/archive/cuetools-1.3.1.tar.gz;
+    sha256 = "1cap3wl0mlcqrjywpz46003w8jws05rr3r87pzqkz1g89v9459dg";
+  };
+
+  preConfigure = "autoreconf -fiv";
+
+  buildInputs = [ automake autoconf flex bison ]; 
+
+  meta = {
+    description = "cd/dvd cue and toc file parsers and utilities";
+    homepage = https://github.com/svend/cuetools;
+    platforms = stdenv.lib.platforms.all;
+    license = stdenv.lib.licenses.gpl2;
+    maintainers = with stdenv.lib.maintainers; [ jcumming ];
+  };
+}