Skip to content
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #77082 from misuzu/git-workspace-init
Browse files Browse the repository at this point in the history
gitAndTools.git-workspace: init at 0.4.1
  • Loading branch information
worldofpeace committed Jan 30, 2020
2 parents b4fd657 + b81d1b1 commit 183e706
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
Expand Up @@ -135,6 +135,10 @@ let

git-test = callPackage ./git-test { };

git-workspace = callPackage ./git-workspace {
inherit (darwin.apple_sdk.frameworks) Security;
};

git2cl = callPackage ./git2cl { };

gitFastExport = callPackage ./fast-export { };
Expand Down
@@ -0,0 +1,31 @@
{ stdenv
, fetchFromGitHub
, rustPlatform
, Security
}:

rustPlatform.buildRustPackage rec {
pname = "git-workspace";
version = "0.4.1";

src = fetchFromGitHub {
owner = "orf";
repo = pname;
rev = "v${version}";
sha256 = "01qxm00c5wqpy1clrvjr44v7cg4nqawaf5a6qnvvgswvis4kakzr";
};

cargoSha256 = "16rkmk888alfvq8nsggi26vck1c7ya0fa5j7gv219g5py4gw2n34";

verifyCargoDeps = true;

buildInputs = with stdenv; lib.optional isDarwin Security;

meta = with stdenv.lib; {
description = "Sync personal and work git repositories from multiple providers";
homepage = "https://github.com/orf/git-workspace";
license = with licenses; [ mit ];
platforms = platforms.all;
maintainers = with maintainers; [ misuzu ];
};
}

0 comments on commit 183e706

Please sign in to comment.