a9ce4b0884
http://hydra.nixos.org/build/34377524/nixlog/1/raw While at it, add a license.
19 lines
486 B
Nix
19 lines
486 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libdvdcss-${version}";
|
|
version = "1.3.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://get.videolan.org/libdvdcss/${version}/${name}.tar.bz2";
|
|
sha256 = "158k9zagmbk5bkbz96l6lwhh7xcgfcnzflkr4vblskhcab6llhbw";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.videolan.org/developers/libdvdcss.html;
|
|
description = "A library for decrypting DVDs";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|