summary refs log tree commit diff
path: root/pkgs/development/libraries/libdvdread/default.nix
blob: 30fd6835dfbb20be0e418664ebe48959a39a8d34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{stdenv, fetchurl, libdvdcss}:

stdenv.mkDerivation {
  name = "libdvdread-4.1.3";
  
  src = fetchurl {
    url = http://www.mplayerhq.hu/MPlayer/releases/dvdnav/libdvdread-4.1.3.tar.bz2;
    sha1 = "fc4c7ba3e49929191e057b435bc4f867583ea8d5";
  };

  buildInputs = [libdvdcss];

  NIX_LDFLAGS = "-ldvdcss";

  configureScript = "./configure2"; # wtf?

  preConfigure = ''
    ensureDir $out
  '';

  postInstall = ''
    ln -s dvdread $out/include/libdvdread
  '';

  meta = {
    homepage = http://www.mplayerhq.hu/;
    description = "A library for reading DVDs";
  };
}