mp4v2: enable darwin

This commit is contained in:
Orivej Desh 2017-12-09 11:44:22 +00:00
parent 0a41fc6b7c
commit 36cab2324c

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl }: { stdenv, lib, fetchurl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mp4v2-2.0.0"; name = "mp4v2-2.0.0";
@ -18,10 +18,12 @@ stdenv.mkDerivation rec {
hardeningDisable = [ "format" ]; hardeningDisable = [ "format" ];
enableParallelBuilding = true;
meta = { meta = {
homepage = https://code.google.com/archive/p/mp4v2/; homepage = https://code.google.com/archive/p/mp4v2/;
maintainers = [ ]; maintainers = [ ];
platforms = stdenv.lib.platforms.linux; platforms = lib.platforms.unix;
license = stdenv.lib.licenses.mpl11; license = lib.licenses.mpl11;
}; };
} }