about summary refs log tree commit diff
path: root/pkgs/applications/version-management/git-backdate/default.nix
blob: c63b2e6f3429c2d7f93ea5ae3893fc52290b51e5 (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
{ lib, stdenv, fetchFromGitHub, git, python3 }:

stdenv.mkDerivation rec {
  pname = "git-backdate";
  version = "2023-07-19";

  src = fetchFromGitHub {
    owner = "rixx";
    repo = pname;
    rev = "8ba5a0eba04e5559be2e4b1b6e02e62b64ca4dd8";
    sha256 = "sha256-91cEGQ0FtoiHEZHQ93jPFHF2vLoeQuBidykePFHtrsY=";
  };

  buildInputs = [
    python3
  ];

  installPhase = ''
    runHook preInstall
    install -Dm555 git-backdate -t $out/bin
    runHook postInstall
  '';

  meta = with lib; {
    description = "Backdate a commit or range of commit to a date or range of dates";
    homepage = "https://github.com/rixx/git-backdate";
    license = licenses.wtfpl;
    maintainers = with maintainers; [ matthiasbeyer ];
    mainProgram = "git-backdate";
  };
}