libdvdcss: Don't build on Darwin

http://hydra.nixos.org/build/34377524/nixlog/1/raw

While at it, add a license.
This commit is contained in:
Tuomas Tynkkynen 2016-04-13 04:16:10 +03:00
parent ba59be833b
commit a9ce4b0884

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl}: { stdenv, fetchurl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "libdvdcss-${version}"; name = "libdvdcss-${version}";
@ -9,8 +9,10 @@ stdenv.mkDerivation rec {
sha256 = "158k9zagmbk5bkbz96l6lwhh7xcgfcnzflkr4vblskhcab6llhbw"; sha256 = "158k9zagmbk5bkbz96l6lwhh7xcgfcnzflkr4vblskhcab6llhbw";
}; };
meta = { meta = with stdenv.lib; {
homepage = http://www.videolan.org/developers/libdvdcss.html; homepage = http://www.videolan.org/developers/libdvdcss.html;
description = "A library for decrypting DVDs"; description = "A library for decrypting DVDs";
license = licenses.gpl2;
platforms = platforms.linux;
}; };
} }