mp4v2: enable darwin
This commit is contained in:
parent
0a41fc6b7c
commit
36cab2324c
1 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue