summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorDaniƫl de Kok <me@danieldk.eu>2021-05-25 16:01:47 +0200
committerGitHub <noreply@github.com>2021-05-25 16:01:47 +0200
commit7eddab91f59a14704eceb117cc6cadb44eacb8b2 (patch)
tree43e3576ec170964772588a1f1d429fd9f037a5af /pkgs/development/tools/rust
parent563c5037c94cfb5d6e89aff7221ddbffb069eac0 (diff)
parent604ea22f42d3a38c566071cf898e0d4f2bf30e99 (diff)
downloadnixpkgs-7eddab91f59a14704eceb117cc6cadb44eacb8b2.tar
nixpkgs-7eddab91f59a14704eceb117cc6cadb44eacb8b2.tar.gz
nixpkgs-7eddab91f59a14704eceb117cc6cadb44eacb8b2.tar.bz2
nixpkgs-7eddab91f59a14704eceb117cc6cadb44eacb8b2.tar.lz
nixpkgs-7eddab91f59a14704eceb117cc6cadb44eacb8b2.tar.xz
nixpkgs-7eddab91f59a14704eceb117cc6cadb44eacb8b2.tar.zst
nixpkgs-7eddab91f59a14704eceb117cc6cadb44eacb8b2.zip
Merge pull request #123867 from danieldk/maturin-0.10.5
maturin: 0.10.4 -> 0.10.6
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/maturin/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/development/tools/rust/maturin/default.nix b/pkgs/development/tools/rust/maturin/default.nix
index 41746fa65ce..5ab47c8aa8d 100644
--- a/pkgs/development/tools/rust/maturin/default.nix
+++ b/pkgs/development/tools/rust/maturin/default.nix
@@ -5,26 +5,27 @@
 , rustPlatform
 , pkg-config
 , dbus
+, libiconv
 , Security
 }:
 
 rustPlatform.buildRustPackage rec {
   pname = "maturin";
-  version = "0.10.4";
+  version = "0.10.6";
 
   src = fetchFromGitHub {
     owner = "PyO3";
     repo = "maturin";
     rev = "v${version}";
-    hash = "sha256-9emrBajFd0eLHcsd9Uf6MLCWqZFqxmZdWPBLGIYc2kU=";
+    hash = "sha256-qWDrdS1zxe5woQSKLHhDSGJ1KF4SHk1mhaQApJXCCO4=";
   };
 
-  cargoSha256 = "113i7a5hpz7qch45wwapp53ixvgssnlxm0810yjicxp3k61ak30j";
+  cargoHash = "sha256-NEXgb7yWQkqbbofd3oYQ5n+CmfaM2cWj8HwufrcRKkc=";
 
   nativeBuildInputs = [ pkg-config ];
 
-  buildInputs = lib.optional stdenv.isLinux dbus
-    ++ lib.optional stdenv.isDarwin Security;
+  buildInputs = lib.optionals stdenv.isLinux [ dbus ]
+    ++ lib.optionals stdenv.isDarwin [ Security libiconv ];
 
   # Requires network access, fails in sandbox.
   doCheck = false;