Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b4fd657c25f1
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 183e706767f1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jan 30, 2020

  1. Copy the full SHA
    b81d1b1 View commit details
  2. Merge pull request #77082 from misuzu/git-workspace-init

    gitAndTools.git-workspace: init at 0.4.1
    worldofpeace authored Jan 30, 2020
    Copy the full SHA
    183e706 View commit details
Original file line number Diff line number Diff line change
@@ -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 { };
Original file line number Diff line number Diff line change
@@ -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 ];
};
}