mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
36 lines
839 B
Nix
36 lines
839 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=";
|
|
};
|
|
|
|
vendorHash = "sha256-QpgRCnsOOZujE405dCe+PYg/zNkqnrfZFfbBFo7adjY=";
|
|
|
|
subPackages = [ "." ];
|
|
|
|
nativeBuildInputs = [ asciidoctor ruby ];
|
|
|
|
postBuild = ''
|
|
patchShebangs .
|
|
make all HTMLFILES=
|
|
'';
|
|
|
|
postInstall = ''
|
|
make install prefix=$out HTMLFILES=
|
|
'';
|
|
|
|
meta = {
|
|
description = "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;
|
|
};
|
|
}
|