mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Merge pull request #7226 from spwhitt/git-imerge
git-imerge: new package
This commit is contained in:
commit
54bf1360c1
@ -102,4 +102,6 @@ rec {
|
||||
git-extras = callPackage ./git-extras { };
|
||||
|
||||
git-cola = callPackage ./git-cola { };
|
||||
|
||||
git-imerge = callPackage ./git-imerge { };
|
||||
}
|
||||
|
@ -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 ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user