git-octopus: init at 1.4

This commit is contained in:
Jörg Thalheim 2017-03-13 13:58:07 +01:00
parent 5228bc9f2e
commit d6f586bbff
No known key found for this signature in database
GPG Key ID: CA4106B8D7CC79FA
2 changed files with 36 additions and 0 deletions

View File

@ -66,6 +66,8 @@ rec {
git-imerge = callPackage ./git-imerge { };
git-octopus = callPackage ./git-octopus { };
git-radar = callPackage ./git-radar { };
git-remote-hg = callPackage ./git-remote-hg { };

View File

@ -0,0 +1,34 @@
{ stdenv, fetchFromGitHub, git, perl, makeWrapper }:
with stdenv.lib;
stdenv.mkDerivation rec {
name = "git-octopus-${version}";
version = "1.4";
installFlags = [ "prefix=$(out)" ];
buildInputs = [ makeWrapper ];
# perl provides shasum
postInstall = ''
for f in $out/bin/*; do
wrapProgram $f --prefix PATH : ${makeBinPath [ git perl ]}
done
'';
src = fetchFromGitHub {
owner = "lesfurets";
repo = "git-octopus";
rev = "v${version}";
sha256 = "14p61xk7jankp6gc26xciag9fnvm7r9vcbhclcy23f4ghf4q4sj1";
};
meta = {
homepage = https://github.com/lesfurets/git-octopus;
description = "The continuous merge workflow";
license = licenses.lgpl3;
platforms = platforms.unix;
maintainers = [maintainers.mic92];
};
}