summary refs log tree commit diff
path: root/pkgs/development/libraries/libdvdcss/default.nix
blob: fe51ca0bb1f3d66f5d88bc99cdba80e1e2b77984 (plain) (blame)
1
2
3
4
5
6
7
8
{stdenv, fetchurl}: stdenv.mkDerivation {
  name = "libdvdcss-1.2.8";
  builder = ./builder.sh;
  src = fetchurl {
    url = http://www.videolan.org/pub/videolan/vlc/0.6.2/contrib/libdvdcss-1.2.8.tar.gz;
    md5 = "e35e4240b6ca0b66a0218065dffe6adb";
  };
}