Skip to content

Commit

Permalink
gitAndTools.git-workspace: 0.6.0 -> 0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Ma27 committed Jul 26, 2020
1 parent 390ce60 commit c80bf92
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit c80bf92

Please sign in to comment.