nixpkgs/pkgs/development/libraries/libdvdcss/default.nix
Ryan Mulligan ae6fcf3703 libdvdcss: 1.4.0 -> 1.4.1
Semi-automatic update. These checks were performed:

- built on NixOS
- found 1.4.1 with grep in /nix/store/vc0dcpqiashz0c0ihd4n2bj7jhawnpf3-libdvdcss-1.4.1
- found 1.4.1 in filename of file in /nix/store/vc0dcpqiashz0c0ihd4n2bj7jhawnpf3-libdvdcss-1.4.1
2018-03-04 18:49:03 +00:00

21 lines
567 B
Nix

{stdenv, fetchurl, IOKit}:
stdenv.mkDerivation rec {
name = "libdvdcss-${version}";
version = "1.4.1";
buildInputs = stdenv.lib.optional stdenv.isDarwin IOKit;
src = fetchurl {
url = "http://get.videolan.org/libdvdcss/${version}/${name}.tar.bz2";
sha256 = "1b7awvyahivglp7qmgx2g5005kc5npv257gw7wxdprjsnx93f1zb";
};
meta = with stdenv.lib; {
homepage = http://www.videolan.org/developers/libdvdcss.html;
description = "A library for decrypting DVDs";
license = licenses.gpl2;
platforms = with platforms; linux ++ darwin;
};
}