nixpkgs/pkgs/development/libraries/libdvdread/default.nix
Eelco Dolstra d97fa85adf * Some VLC-related updates.
* Variability :-)  Provide both Autoconf 2.59 and 2.60 (the former
  being the default for now).

svn path=/nixpkgs/trunk/; revision=5539
2006-06-29 12:41:25 +00:00

12 lines
307 B
Nix

{stdenv, fetchurl, libdvdcss}:
stdenv.mkDerivation {
name = "libdvdread-0.9.6";
src = fetchurl {
url = http://www.dtek.chalmers.se/groups/dvd/dist/libdvdread-0.9.6.tar.gz;
md5 = "329401b84ad0b00aaccaad58f2fc393c";
};
configureFlags = "--with-libdvdcss=${libdvdcss}";
inherit libdvdcss;
}