gomp: init at 1.1.0

wip/yesman
Pavol Rusnak 4 years ago
parent 0f8eb0b8f2
commit f34f259579
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
  1. 23
      pkgs/applications/version-management/gomp/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -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 {};
gomp = callPackage ../applications/version-management/gomp { };
gpm = callPackage ../servers/gpm {
ncurses = null; # Keep curses disabled for lack of value
};

Loading…
Cancel
Save