gomp: init at 1.1.0
This commit is contained in:
parent
0f8eb0b8f2
commit
f34f259579
|
@ -0,0 +1,23 @@
|
||||||
|
{ lib
|
||||||
|
, python3Packages
|
||||||
|
}:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "gomp";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = python3Packages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "11nq40igqbyfiygdzb1zyxx1n6d9xkv8vlmprbbi75mq54gfihhb";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false; # tests require interactive terminal
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A tool for comparing Git branches";
|
||||||
|
homepage = "https://github.com/MarkForged/GOMP";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ prusnak ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -17015,6 +17015,8 @@ in
|
||||||
|
|
||||||
gmailctl = callPackage ../applications/networking/gmailctl {};
|
gmailctl = callPackage ../applications/networking/gmailctl {};
|
||||||
|
|
||||||
|
gomp = callPackage ../applications/version-management/gomp { };
|
||||||
|
|
||||||
gpm = callPackage ../servers/gpm {
|
gpm = callPackage ../servers/gpm {
|
||||||
ncurses = null; # Keep curses disabled for lack of value
|
ncurses = null; # Keep curses disabled for lack of value
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue