nixpkgs/pkgs/applications/version-management/gomp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
575 B
Nix
Raw Normal View History

2020-08-01 12:03:05 +00:00
{ lib
, python3Packages
, fetchPypi
}:
2020-08-01 12:03:05 +00:00
python3Packages.buildPythonApplication rec {
pname = "gomp";
version = "1.1.0";
src = fetchPypi {
2020-08-01 12:03:05 +00:00
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;
2023-11-27 01:17:53 +00:00
mainProgram = "gomp";
2020-08-01 12:03:05 +00:00
};
}