mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
26 lines
575 B
Nix
26 lines
575 B
Nix
{ 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 = "A tool for comparing Git branches";
|
|
homepage = "https://github.com/MarkForged/GOMP";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ prusnak ];
|
|
platforms = platforms.unix;
|
|
mainProgram = "gomp";
|
|
};
|
|
}
|