7f40c3a93c
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/git-imerge/versions
26 lines
680 B
Nix
26 lines
680 B
Nix
{ stdenv, fetchFromGitHub, pythonPackages }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "git-imerge-${version}";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mhagger";
|
|
repo = "git-imerge";
|
|
rev = "v${version}";
|
|
sha256 = "0vi1w3f0yk4gqhxj2hzqafqq28rihyhyfnp8x7xzib96j2si14a4";
|
|
};
|
|
|
|
buildInputs = [ pythonPackages.python pythonPackages.wrapPython ];
|
|
|
|
makeFlags = "PREFIX= DESTDIR=$(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 ];
|
|
};
|
|
}
|