summary refs log tree commit diff
path: root/pkgs/development/libraries/libdvdread/default.nix
diff options
context:
space:
mode:
authorWout Mertens <Wout.Mertens@gmail.com>2014-05-04 01:23:13 +0200
committerWout Mertens <Wout.Mertens@gmail.com>2014-05-04 01:56:48 +0200
commitc02f80375f9bcc550f3e8b530262c85e585e516a (patch)
tree1868813133dc37c35600637e0774f658f260ffe0 /pkgs/development/libraries/libdvdread/default.nix
parent66216ea6db71c59505b1144432233f6fbb1d1561 (diff)
downloadnixpkgs-c02f80375f9bcc550f3e8b530262c85e585e516a.tar
nixpkgs-c02f80375f9bcc550f3e8b530262c85e585e516a.tar.gz
nixpkgs-c02f80375f9bcc550f3e8b530262c85e585e516a.tar.bz2
nixpkgs-c02f80375f9bcc550f3e8b530262c85e585e516a.tar.lz
nixpkgs-c02f80375f9bcc550f3e8b530262c85e585e516a.tar.xz
nixpkgs-c02f80375f9bcc550f3e8b530262c85e585e516a.tar.zst
nixpkgs-c02f80375f9bcc550f3e8b530262c85e585e516a.zip
libdvd{read,nav}: Version bump and patch from Handbrake project
- API-compatible version bumps to latest upstream
Patches:
- A08: Adds API call to duplicate a DVD VM to libdvdnav
- P00: Skip making examples
Diffstat (limited to 'pkgs/development/libraries/libdvdread/default.nix')
-rw-r--r--pkgs/development/libraries/libdvdread/default.nix16
1 files changed, 6 insertions, 10 deletions
diff --git a/pkgs/development/libraries/libdvdread/default.nix b/pkgs/development/libraries/libdvdread/default.nix
index 2593274d89b..eb5a48a99f1 100644
--- a/pkgs/development/libraries/libdvdread/default.nix
+++ b/pkgs/development/libraries/libdvdread/default.nix
@@ -1,29 +1,25 @@
 {stdenv, fetchurl, libdvdcss}:
 
 stdenv.mkDerivation {
-  name = "libdvdread-4.2.1";
+  name = "libdvdread-4.9.9";
   
   src = fetchurl {
-    url = http://dvdnav.mplayerhq.hu/releases/libdvdread-4.2.1.tar.xz;
-    sha256 = "af9b98f049580a6521d56c978b736d3d609562dd12955e11d50e26d97542dcd4";
+    url = http://dvdnav.mplayerhq.hu/releases/libdvdread-4.9.9.tar.xz;
+    sha256 = "d91275471ef69d488b05cf15c60e1cd65e17648bfc692b405787419f47ca424a";
   };
 
   buildInputs = [libdvdcss];
 
   NIX_LDFLAGS = "-ldvdcss";
 
-  configureScript = "./configure2"; # wtf?
-
-  preConfigure = ''
-    mkdir -p $out
-  '';
-
   postInstall = ''
     ln -s dvdread $out/include/libdvdread
   '';
 
   meta = {
-    homepage = http://www.mplayerhq.hu/;
+    homepage = http://dvdnav.mplayerhq.hu/;
     description = "A library for reading DVDs";
+    license = stdenv.lib.licenses.gpl2;
+    maintainers = [ stdenv.lib.maintainers.wmertens ];
   };
 }