summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/git-stree/default.nix
blob: ae40e011f858bc00385a08c63fa5af9f6c844ad1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, lib, fetchFromGitHub, ... }:

stdenv.mkDerivation {
  pname = "git-stree";
  version = "0.4.5";

  src = fetchFromGitHub {
    owner = "tdd";
    repo = "git-stree";
    rev = "0.4.5";
    sha256 = "0y5h44n38w6rhy9m591dvibxpfggj3q950ll7y4h49bhpks4m0l9";
  };

  installPhase = ''
    mkdir -p $out/bin $out/etc/bash_completion.d
    install -m 0755 git-stree $out/bin/
    install -m 0644 git-stree-completion.bash $out/etc/bash_completion.d/
  '';

  meta = with lib; {
    description = "A better Git subtree helper command";
    homepage = http://deliciousinsights.github.io/git-stree;
    license = licenses.mit;
    maintainers = [ maintainers.benley ];
    platforms = platforms.unix;
  };
}