about summary refs log tree commit diff
path: root/tools/git-broom/default.nix
blob: e25c6ec4f709252379beabedf69eaf187ee39285 (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
{ self, lib, python3, stdenvNoCC, pkgs }:

stdenvNoCC.mkDerivation rec {
  pname = "git-broom";
  src = ./git-broom.py;
  version = "0.1.0";

  nativeBuildInputs = with pkgs; [ python3 ];

  dontUnpack = true;
  dontBuild = true;

  installPhase = ''
    mkdir -p $out/bin
    cp $src $out/bin/${pname}
  '';


  meta = with pkgs.lib; {
    description = "CLI to delete local and remote git branches that have been merged.";
    license = licenses.mit;
    platforms = platforms.unix;
    maintainers = [ ];
  };
}