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: d0abc5d54f7d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6f128c37bb39
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on Jun 7, 2020

  1. Copy the full SHA
    3795ac5 View commit details

Commits on Jun 8, 2020

  1. Merge pull request #89749 from marsam/init-git-subset

    gitAndTools.git-subset: init at 0.1.1
    marsam authored Jun 8, 2020
    Copy the full SHA
    6f128c3 View commit details
Original file line number Diff line number Diff line change
@@ -136,6 +136,10 @@ let

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

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

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

git-sync = callPackage ./git-sync { };
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ stdenv, rustPlatform, fetchFromGitHub, pkg-config, openssl, curl, libiconv, Security }:

rustPlatform.buildRustPackage rec {
pname = "git-subset";
version = "0.1.1";

src = fetchFromGitHub {
owner = "jasonwhite";
repo = pname;
rev = "v${version}";
sha256 = "02z2r0kcd0nnn1zjslp6xxam5ddbhrmzn67qzxhlamsw0p9vvkbb";
};

cargoSha256 = "1ydrrq35h1h5s59mx8kwwf3bp7lsmla3jl53ccdlsq29x0rj2jhs";

nativeBuildInputs = [ pkg-config ];

buildInputs = [ openssl ] ++ stdenv.lib.optionals stdenv.isDarwin [ curl libiconv Security ];

meta = with stdenv.lib; {
description = "Super fast Git tree filtering";
homepage = "https://github.com/jasonwhite/git-subset";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}