about summary refs log tree commit diff
path: root/pkgs/applications/version-management/gomp/default.nix
blob: 1aa5bb9951b7b362dd0968902f13064ab6de4a92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib
, python3Packages
, fetchPypi
}:

python3Packages.buildPythonApplication rec {
  pname = "gomp";
  version = "1.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "11nq40igqbyfiygdzb1zyxx1n6d9xkv8vlmprbbi75mq54gfihhb";
  };

  doCheck = false; # tests require interactive terminal

  meta = with lib; {
    description = "Tool for comparing Git branches";
    homepage = "https://github.com/MarkForged/GOMP";
    license = licenses.mit;
    maintainers = with maintainers; [ prusnak ];
    platforms = platforms.unix;
    mainProgram = "gomp";
  };
}