lol
1{ lib
2, python3Packages
3, fetchPypi
4}:
5
6python3Packages.buildPythonApplication rec {
7 pname = "gomp";
8 version = "1.1.0";
9
10 src = fetchPypi {
11 inherit pname version;
12 sha256 = "11nq40igqbyfiygdzb1zyxx1n6d9xkv8vlmprbbi75mq54gfihhb";
13 };
14
15 doCheck = false; # tests require interactive terminal
16
17 meta = with lib; {
18 description = "A tool for comparing Git branches";
19 homepage = "https://github.com/MarkForged/GOMP";
20 license = licenses.mit;
21 maintainers = with maintainers; [ prusnak ];
22 platforms = platforms.unix;
23 mainProgram = "gomp";
24 };
25}