Merge pull request #123505 from stephank/fix-simple-http-server-darwin
simple-http-server: fix darwin build
This commit is contained in:
commit
1a1867b9e9
@ -1,4 +1,4 @@
|
|||||||
{ lib, rustPlatform, fetchFromGitHub, pkg-config, openssl }:
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, Security }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "simple-http-server";
|
pname = "simple-http-server";
|
||||||
@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
buildInputs = [ openssl ];
|
buildInputs = if stdenv.isDarwin then [ Security ] else [ openssl ];
|
||||||
|
|
||||||
# Currently no tests are implemented, so we avoid building the package twice
|
# Currently no tests are implemented, so we avoid building the package twice
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
@ -31327,7 +31327,9 @@ in
|
|||||||
|
|
||||||
simplehttp2server = callPackage ../servers/simplehttp2server { };
|
simplehttp2server = callPackage ../servers/simplehttp2server { };
|
||||||
|
|
||||||
simple-http-server = callPackage ../servers/simple-http-server { };
|
simple-http-server = callPackage ../servers/simple-http-server {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
diceware = with python3Packages; toPythonApplication diceware;
|
diceware = with python3Packages; toPythonApplication diceware;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user