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
572 B
Nix
Raw Permalink 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";
2024-07-21 02:01:48 +00:00
version = "1.1.1";
2020-08-01 12:03:05 +00:00
src = fetchPypi {
2020-08-01 12:03:05 +00:00
inherit pname version;
2024-07-21 02:01:48 +00:00
sha256 = "sha256-Ixq9jtV56FKbh68jqmRd3lwpbMG00GcOUIpjzJhnSp0=";
2020-08-01 12:03:05 +00:00
};
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;
2023-11-27 01:17:53 +00:00
mainProgram = "gomp";
2020-08-01 12:03:05 +00:00
};
}