blob: 2e1cc41c5a73d0c91282d843f90cd2defc7b9133 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{lib, stdenv, fetchurl, IOKit}:
stdenv.mkDerivation rec {
pname = "libdvdcss";
version = "1.4.3";
buildInputs = lib.optional stdenv.hostPlatform.isDarwin IOKit;
src = fetchurl {
url = "http://get.videolan.org/libdvdcss/${version}/${pname}-${version}.tar.bz2";
sha256 = "sha256-IzzJL13AHF06lvWzWCvn1c7lo1pS06CBWHRdPYYHAHk=";
};
meta = with lib; {
homepage = "http://www.videolan.org/developers/libdvdcss.html";
description = "Library for decrypting DVDs";
license = licenses.gpl2;
platforms = with platforms; linux ++ darwin;
};
}
|