summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-01-02 21:47:58 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2020-01-02 22:12:03 +0100
commitac62ee848e24e2b94e1577211132b552a4248c42 (patch)
tree27f111caee910b12a23c0c576734a3707f1b2c12 /pkgs
parent845e92835d90d300142157c6bae9ca5b7831e2bd (diff)
downloadnixpkgs-ac62ee848e24e2b94e1577211132b552a4248c42.tar
nixpkgs-ac62ee848e24e2b94e1577211132b552a4248c42.tar.gz
nixpkgs-ac62ee848e24e2b94e1577211132b552a4248c42.tar.bz2
nixpkgs-ac62ee848e24e2b94e1577211132b552a4248c42.tar.lz
nixpkgs-ac62ee848e24e2b94e1577211132b552a4248c42.tar.xz
nixpkgs-ac62ee848e24e2b94e1577211132b552a4248c42.tar.zst
nixpkgs-ac62ee848e24e2b94e1577211132b552a4248c42.zip
cargo-release: 0.12.4 -> 0.13.0
https://github.com/sunng87/cargo-release/releases/tag/v0.13.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/package-management/cargo-release/default.nix11
1 files changed, 6 insertions, 5 deletions
diff --git a/pkgs/tools/package-management/cargo-release/default.nix b/pkgs/tools/package-management/cargo-release/default.nix
index eb3977e84e6..3e3ba47be05 100644
--- a/pkgs/tools/package-management/cargo-release/default.nix
+++ b/pkgs/tools/package-management/cargo-release/default.nix
@@ -1,19 +1,20 @@
-{ stdenv, rustPlatform, fetchFromGitHub, Security }:
+{ stdenv, rustPlatform, fetchFromGitHub, Security, openssl, pkg-config }:
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-release";
-  version = "0.12.4";
+  version = "0.13.0";
 
   src = fetchFromGitHub {
     owner = "sunng87";
     repo = "cargo-release";
     rev = "v${version}";
-    sha256 = "02rx25dd3klprwr1qmn5vn4vz4244amk2ky4nqfmi4vq3ygrhd1c";
+    sha256 = "1w9w43i5br94vg5m4idabh67p4ffsx2lmc2g0ak2k961vl46wr0q";
   };
 
-  cargoSha256 = "18nbmq8j58jlka1lsrx2y0bhb9l5f3wyvcr1zmmda3hvc3vm7kla";
+  cargoSha256 = "075fvvd4c8f3kz6i6ny835h6jpa3c1v3miwfwwrdyy49a85lzjyj";
 
-  buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
 
   meta = with stdenv.lib; {
     description = ''Cargo subcommand "release": everything about releasing a rust crate'';