mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
synapse-bt: fix darwin build
This commit is contained in:
parent
253d78142d
commit
d5ca8dea78
2 changed files with 5 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl }:
|
{ stdenv, fetchFromGitHub, rustPlatform, pkgconfig, openssl, Security }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
name = "synapse-bt-unstable-${version}";
|
name = "synapse-bt-unstable-${version}";
|
||||||
|
@ -13,7 +13,7 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
cargoSha256 = "1psrmgf6ddzqwx7gf301rx84asfnvxpsvkx2fan453v65819k960";
|
cargoSha256 = "1psrmgf6ddzqwx7gf301rx84asfnvxpsvkx2fan453v65819k960";
|
||||||
|
|
||||||
buildInputs = [ pkgconfig openssl ];
|
buildInputs = [ pkgconfig openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
|
||||||
|
|
||||||
cargoBuildFlags = [ "--all" ];
|
cargoBuildFlags = [ "--all" ];
|
||||||
|
|
||||||
|
|
|
@ -17187,7 +17187,9 @@ with pkgs;
|
||||||
inherit (gnome3) libgee;
|
inherit (gnome3) libgee;
|
||||||
};
|
};
|
||||||
|
|
||||||
synapse-bt = callPackage ../applications/networking/p2p/synapse-bt { };
|
synapse-bt = callPackage ../applications/networking/p2p/synapse-bt {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
};
|
||||||
|
|
||||||
synfigstudio = callPackage ../applications/graphics/synfigstudio {
|
synfigstudio = callPackage ../applications/graphics/synfigstudio {
|
||||||
fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; };
|
fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; };
|
||||||
|
|
Loading…
Reference in a new issue