summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-and-tools/git-reparent/default.nix
blob: ec1c44b96134e51b0395488456e07f4771783af0 (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
28
29
30
31
32
33
{ lib, stdenv, fetchFromGitHub, makeWrapper, git, gnused }:

stdenv.mkDerivation rec {
  pname = "git-reparent";
  version = "unstable-2017-09-03";

  src = fetchFromGitHub {
    owner  = "MarkLodato";
    repo   = "git-reparent";
    rev    = "a99554a32524a86421659d0f61af2a6c784b7715";
    sha256 = "0v0yxydpw6r4awy0hb7sbnh520zsk86ibzh1xjf3983yhsvkfk5v";
  };

  nativeBuildInputs = [ makeWrapper ];

  dontBuild = true;

  installPhase = ''
    install -m755 -Dt $out/bin git-reparent
  '';

  postFixup = ''
    wrapProgram $out/bin/git-reparent --prefix PATH : "${lib.makeBinPath [ git gnused ]}"
  '';

  meta = with lib; {
    inherit (src.meta) homepage;
    description = "Git command to recommit HEAD with a new set of parents";
    maintainers = [ maintainers.marsam ];
    license = licenses.gpl2;
    platforms = platforms.unix;
  };
}