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 , fetchFromGitHub
, rustPlatform , rustPlatform
, Security , Security
, pkgconfig, openssl
}: }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "git-workspace"; pname = "git-workspace";
version = "0.6.0"; version = "0.7.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "orf"; owner = "orf";
repo = pname; repo = pname;
rev = "v${version}"; 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; { meta = with stdenv.lib; {
description = "Sync personal and work git repositories from multiple providers"; description = "Sync personal and work git repositories from multiple providers";