depot/third_party/nixpkgs/pkgs/applications/version-management/reposurgeon/default.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

35 lines
843 B
Nix

{ lib, fetchurl, buildGoModule, asciidoctor, ruby
}:
buildGoModule rec {
pname = "reposurgeon";
version = "4.26";
src = fetchurl {
url = "http://www.catb.org/~esr/reposurgeon/reposurgeon-${version}.tar.xz";
sha256 = "sha256-FuL5pvIM468hEm6rUBKGW6+WlYv4DPHNnpwpRGzMwlY=";
};
vendorSha256 = "sha256-QpgRCnsOOZujE405dCe+PYg/zNkqnrfZFfbBFo7adjY=";
subPackages = [ "." ];
nativeBuildInputs = [ asciidoctor ruby ];
postBuild = ''
patchShebangs .
make all HTMLFILES=
'';
postInstall = ''
make install prefix=$out HTMLFILES=
'';
meta = {
description = "A tool for editing version-control repository history";
license = lib.licenses.bsd3;
homepage = "http://www.catb.org/esr/reposurgeon/";
maintainers = with lib.maintainers; [ dfoxfranke ];
platforms = lib.platforms.all;
};
}