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