nim-unwrapped: Add missing Security framework buildInput
This commit is contained in:
parent
0ef1c25e14
commit
855b6e2ad0
2 changed files with 6 additions and 4 deletions
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
{ lib, callPackage, buildPackages, stdenv, fetchurl, fetchgit, fetchFromGitHub
|
{ lib, callPackage, buildPackages, stdenv, fetchurl, fetchgit, fetchFromGitHub
|
||||||
, makeWrapper, openssl, pcre, readline, boehmgc, sqlite, nim-unwrapped
|
, makeWrapper, openssl, pcre, readline, boehmgc, sqlite, nim-unwrapped
|
||||||
, nimble-unwrapped }:
|
, nimble-unwrapped, Security }:
|
||||||
|
|
||||||
let
|
let
|
||||||
parseCpu = platform:
|
parseCpu = platform:
|
||||||
|
@ -94,7 +94,8 @@ in {
|
||||||
hash = "sha256-rO8LCrdzYE1Nc5S2hRntt0+zD0aRIpSyi8J+DHtLTcI=";
|
hash = "sha256-rO8LCrdzYE1Nc5S2hRntt0+zD0aRIpSyi8J+DHtLTcI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ boehmgc openssl pcre readline sqlite ];
|
buildInputs = [ boehmgc openssl pcre readline sqlite ]
|
||||||
|
++ lib.optional stdenv.isDarwin Security;
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./NIM_CONFIG_DIR.patch
|
./NIM_CONFIG_DIR.patch
|
||||||
|
|
|
@ -15579,8 +15579,9 @@ with pkgs;
|
||||||
|
|
||||||
muonlang = callPackage ../development/compilers/muonlang { };
|
muonlang = callPackage ../development/compilers/muonlang { };
|
||||||
|
|
||||||
inherit (callPackages ../development/compilers/nim { })
|
inherit (callPackages ../development/compilers/nim
|
||||||
nim-unwrapped nimble-unwrapped nim;
|
{ inherit (darwin) Security; }
|
||||||
|
) nim-unwrapped nimble-unwrapped nim;
|
||||||
nimPackages = recurseIntoAttrs nim.pkgs;
|
nimPackages = recurseIntoAttrs nim.pkgs;
|
||||||
|
|
||||||
nrpl = callPackage ../development/tools/nrpl { };
|
nrpl = callPackage ../development/tools/nrpl { };
|
||||||
|
|
Loading…
Reference in a new issue