cargo-update: init at 1.5.2 (#40575)

This commit is contained in:
Tobias Happ
2018-08-02 10:28:57 +02:00
committed by xeji
parent 742a50dafd
commit 219970b494
3 changed files with 1362 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,27 @@
{ stdenv, callPackage, defaultCrateOverrides, fetchFromGitHub, cmake, libssh2, libgit2, openssl, zlib }:
((callPackage ./cargo-update.nix {}).cargo_update {}).override {
crateOverrides = defaultCrateOverrides // {
cargo-update = attrs: rec {
name = "cargo-update-${version}";
version = "1.5.2";
src = fetchFromGitHub {
owner = "nabijaczleweli";
repo = "cargo-update";
rev = "v${version}";
sha256 = "1bvrdgcw2akzd78wgvsisvghi8pvdk3szyg9s46qxv4km9sf88s7";
};
buildInputs = [ cmake libssh2 libgit2 openssl zlib ];
meta = with stdenv.lib; {
description = "A cargo subcommand for checking and applying updates to installed executables";
homepage = https://github.com/nabijaczleweli/cargo-update;
license = with licenses; [ mit ];
maintainers = with maintainers; [ gerschtli ];
platforms = platforms.all;
};
};
};
}