a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
32 lines
826 B
Nix
32 lines
826 B
Nix
{ lib, stdenv, python, perl, fetchFromGitHub, installShellFiles }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "git-publish";
|
|
version = "1.8.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stefanha";
|
|
repo = "git-publish";
|
|
rev = "v${version}";
|
|
sha256 = "14rz5kli6sz171cvdc46z3z0nnpd57rliwr6nn6vjjc49yyfwgl4";
|
|
};
|
|
|
|
nativeBuildInputs = [ perl installShellFiles ];
|
|
buildInputs = [ python ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm0755 git-publish $out/bin/git-publish
|
|
pod2man git-publish.pod > git-publish.1
|
|
installManPage git-publish.1
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Prepare and store patch revisions as git tags";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.lheckemann ];
|
|
homepage = "https://github.com/stefanha/git-publish";
|
|
};
|
|
}
|