mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-29 06:45:54 +03:00
pijul: fix darwin build
This commit is contained in:
parent
edb1668130
commit
0f2e9c00f7
@ -1,8 +1,6 @@
|
|||||||
{ stdenv, fetchurl, rustPlatform, darwin, openssl, libsodium, nettle, clang, libclang, pkgconfig }:
|
{ stdenv, fetchurl, rustPlatform, darwin, openssl, libsodium, nettle, clang, libclang, pkgconfig }:
|
||||||
|
|
||||||
with rustPlatform;
|
rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
buildRustPackage rec {
|
|
||||||
name = "pijul-${version}";
|
name = "pijul-${version}";
|
||||||
version = "0.12.0";
|
version = "0.12.0";
|
||||||
|
|
||||||
@ -23,7 +21,7 @@ buildRustPackage rec {
|
|||||||
LIBCLANG_PATH = libclang + "/lib";
|
LIBCLANG_PATH = libclang + "/lib";
|
||||||
|
|
||||||
buildInputs = [ openssl libsodium nettle libclang ] ++ stdenv.lib.optionals stdenv.isDarwin
|
buildInputs = [ openssl libsodium nettle libclang ] ++ stdenv.lib.optionals stdenv.isDarwin
|
||||||
(with darwin.apple_sdk.frameworks; [ Security ]);
|
(with darwin.apple_sdk.frameworks; [ CoreServices Security ]);
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user