mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #39344 from matthewbauer/mono-fixes
Mono: add vulnerabilities
This commit is contained in:
commit
6ec7c3935b
2 changed files with 8 additions and 3 deletions
|
@ -3,4 +3,7 @@ callPackage ./generic.nix (rec {
|
|||
inherit Foundation libobjc;
|
||||
version = "4.0.4.1";
|
||||
sha256 = "1ydw9l89apc9p7xr5mdzy0h97g2q6v243g82mxswfc2rrqhfs4gd";
|
||||
meta = {
|
||||
knownVulnerabilities = [ "CVE-2009-0689" ];
|
||||
};
|
||||
})
|
||||
|
|
|
@ -5,13 +5,15 @@
|
|||
, version, sha256
|
||||
, withLLVM ? false
|
||||
, enableParallelBuilding ? true
|
||||
, meta ? {}
|
||||
}:
|
||||
|
||||
let
|
||||
llvm = callPackage ./llvm.nix { };
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mono-${version}";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
src = fetchurl {
|
||||
inherit sha256;
|
||||
|
@ -91,5 +93,5 @@ stdenv.mkDerivation rec {
|
|||
platforms = stdenv.lib.platforms.x86;
|
||||
maintainers = with stdenv.lib.maintainers; [ viric thoughtpolice obadz vrthra ];
|
||||
license = stdenv.lib.licenses.free; # Combination of LGPL/X11/GPL ?
|
||||
};
|
||||
} // meta;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue