Skip to content

Commit

Permalink
git-octopus: init at 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Mar 14, 2017
1 parent 5228bc9 commit d6f586b
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
Expand Up @@ -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 { };
Expand Down
@@ -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];
};
}

0 comments on commit d6f586b

Please sign in to comment.