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: 310b5f6c3439
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed234c370830
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Apr 13, 2020

  1. gitAndTools.gitbatch: init at 2019-12-19

    init an unstable version since the tagged release wouldn't work on my
    machine (infinite loop).
    Practical tool to fetch several repositories at the same time, see their
    status etc.
    
    Disabled for darwin because of CI error "SIGILL: illegal instruction".
    teto committed Apr 13, 2020
    Copy the full SHA
    ed234c3 View commit details
Original file line number Diff line number Diff line change
@@ -167,6 +167,8 @@ let

gita = python3Packages.callPackage ./gita {};

gitbatch = callPackage ./gitbatch { };

gitflow = callPackage ./gitflow { };

gitstatus = callPackage ./gitstatus { };
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
pname = "gitbatch-unstable";
version = "2019-12-19";

goPackagePath = "github.com/isacikgoz/gitbatch";

goDeps = ./deps.nix;

src = fetchFromGitHub {
owner = "isacikgoz";
repo = "gitbatch";
rev = "381b0df7f86056c625c0d4d2d979733c1ee5def7";
sha256 = "sha256:0613vfqdn3k0w7fm25rqnqdr67w9vii3i56dfslqcn1vqjfrff3q";
};

meta = with stdenv.lib; {
description = "Running git UI commands";
homepage = "https://github.com/isacikgoz/gitbatch";
license = licenses.mit;
maintainers = with maintainers; [ teto ];
platforms = with platforms; linux;
};
}
Loading