mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
19 lines
486 B
Nix
19 lines
486 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdvdcss-${version}";
|
|
version = "1.4.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://get.videolan.org/libdvdcss/${version}/${name}.tar.bz2";
|
|
sha256 = "0nl45ifc4xcb196snv9d6hinfw614cqpzcqp92dg43c0hickg290";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.videolan.org/developers/libdvdcss.html;
|
|
description = "A library for decrypting DVDs";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|