gitAndTools.git-workspace: 0.6.0 -> 0.7.0

https://github.com/orf/git-workspace/releases/tag/v0.7.0
This commit is contained in:
Maximilian Bosch 2020-07-26 02:42:04 +02:00
parent 390ce60d49
commit c80bf92d7c
No known key found for this signature in database
GPG key ID: 091DBF4D1FC46B8E

View file

@ -2,22 +2,24 @@
, fetchFromGitHub
, rustPlatform
, Security
, pkgconfig, openssl
}:
rustPlatform.buildRustPackage rec {
pname = "git-workspace";
version = "0.6.0";
version = "0.7.0";
src = fetchFromGitHub {
owner = "orf";
repo = pname;
rev = "v${version}";
sha256 = "0n025bnisg724d9pjcindxagj1ry63sxr0pplpkh2f2qffzm78pi";
sha256 = "1ckfk221ag6yhbqxfz432wpgbhddgzgdsaxhl1ymw90pwpnz717y";
};
cargoSha256 = "0ikyp6pdlw2c1gr1n1snjbdmblm0fs5swx5awy36jskii99q6kr1";
cargoSha256 = "0zkns037vgy96ybmn80px515ivz6yhj5br5mwbvxgl73va92wd9v";
buildInputs = with stdenv; lib.optional isDarwin Security;
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ openssl ] ++ stdenv.lib.optional stdenv.isDarwin Security;
meta = with stdenv.lib; {
description = "Sync personal and work git repositories from multiple providers";