nixpkgs/pkgs/applications/version-management/gomp/default.nix
2020-08-05 23:19:58 +02:00

24 lines
554 B
Nix

{ lib
, python3Packages
}:
python3Packages.buildPythonApplication rec {
pname = "gomp";
version = "1.1.0";
src = python3Packages.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;
};
}