Merge pull request #7226 from spwhitt/git-imerge

git-imerge: new package
This commit is contained in:
John Wiegley 2015-04-07 10:37:18 -05:00
commit 54bf1360c1
2 changed files with 28 additions and 0 deletions

View File

@ -102,4 +102,6 @@ rec {
git-extras = callPackage ./git-extras { };
git-cola = callPackage ./git-cola { };
git-imerge = callPackage ./git-imerge { };
}

View File

@ -0,0 +1,26 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "git-imerge-${version}";
version = "0.7.0";
src = fetchFromGitHub {
repo = "git-imerge";
owner = "mhagger";
rev = version;
sha256 = "09czjxgjbby54jx1v5m825k87v8g9g374hwv0r6ss48kv1ipvakq";
};
installPhase = ''
mkdir -p $out/bin
make install PREFIX=$out
'';
meta = with stdenv.lib; {
homepage = https://github.com/mhagger/git-imerge;
description = "Perform a merge between two branches incrementally";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.spwhitt ];
};
}