about summary refs log tree commit diff
path: root/pkgs/tools/misc/synth
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2021-10-29 11:42:32 -0400
committerfigsoda <figsoda@pm.me>2021-11-02 08:01:40 -0400
commit503a76e4f8e77d36799dde7b00feb6b0543c93c0 (patch)
tree8d87880e9446c6ac3d20f6dfc4008be28e0e68d5 /pkgs/tools/misc/synth
parentde72551e2285aca512ef69b2d06b71d8cd6e42bd (diff)
synth: 0.6.0 -> 0.6.1
Diffstat (limited to 'pkgs/tools/misc/synth')
-rw-r--r--pkgs/tools/misc/synth/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/tools/misc/synth/default.nix b/pkgs/tools/misc/synth/default.nix
index 0249491fbde6b..1a66669b41c3c 100644
--- a/pkgs/tools/misc/synth/default.nix
+++ b/pkgs/tools/misc/synth/default.nix
@@ -4,25 +4,31 @@
 , pkg-config
 , openssl
 , stdenv
+, CoreFoundation
 , Security
+, SystemConfiguration
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "synth";
-  version = "0.6.0";
+  version = "0.6.1";
 
   src = fetchFromGitHub {
     owner = "getsynth";
     repo = pname;
     rev = "v${version}";
-    sha256 = "sha256-i5X2HUOCgY2znH4rDzhFpsPXsFeM7GR4soAO/rFDjjo=";
+    sha256 = "sha256-VsvGrlFmn8Q7dhvo3Buy8G0oeNErtBT4lZ8k8WFC8Zo=";
   };
 
-  cargoSha256 = "sha256-47i46Y6JjTGWC7mfMd2x2k8v0SY1o2UHdEU4rF0VrsY=";
+  cargoSha256 = "sha256-10b2n7wMuBt90GZ6AVnSMT7r2501tounw13eJhyrmS4=";
 
   nativeBuildInputs = [ pkg-config ];
 
-  buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
+  buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [
+    CoreFoundation
+    Security
+    SystemConfiguration
+  ];
 
   # requires unstable rust features
   RUSTC_BOOTSTRAP = 1;