gomp: init at 1.1.0

+25
+23
pkgs/applications/version-management/gomp/default.nix
··· 1 + { lib 2 + , python3Packages 3 + }: 4 + 5 + python3Packages.buildPythonApplication rec { 6 + pname = "gomp"; 7 + version = "1.1.0"; 8 + 9 + src = python3Packages.fetchPypi { 10 + inherit pname version; 11 + sha256 = "11nq40igqbyfiygdzb1zyxx1n6d9xkv8vlmprbbi75mq54gfihhb"; 12 + }; 13 + 14 + doCheck = false; # tests require interactive terminal 15 + 16 + meta = with lib; { 17 + description = "A tool for comparing Git branches"; 18 + homepage = "https://github.com/MarkForged/GOMP"; 19 + license = licenses.mit; 20 + maintainers = with maintainers; [ prusnak ]; 21 + platforms = platforms.unix; 22 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 17015 17015 17016 17016 gmailctl = callPackage ../applications/networking/gmailctl {}; 17017 17017 17018 + gomp = callPackage ../applications/version-management/gomp { }; 17019 + 17018 17020 gpm = callPackage ../servers/gpm { 17019 17021 ncurses = null; # Keep curses disabled for lack of value 17020 17022 };