mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
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:
parent
ba59be833b
commit
a9ce4b0884
1 changed files with 4 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
{stdenv, fetchurl}:
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libdvdcss-${version}";
|
||||
|
@ -9,8 +9,10 @@ stdenv.mkDerivation rec {
|
|||
sha256 = "158k9zagmbk5bkbz96l6lwhh7xcgfcnzflkr4vblskhcab6llhbw";
|
||||
};
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.videolan.org/developers/libdvdcss.html;
|
||||
description = "A library for decrypting DVDs";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue