3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/gitless/default.nix

28 lines
625 B
Nix
Raw Normal View History

{ fetchFromGitHub, python, lib }:
2017-12-12 18:33:42 +00:00
2019-12-30 08:13:43 +00:00
with python.pkgs;
buildPythonApplication rec {
pname = "gitless";
version = "0.8.8";
2017-12-12 18:33:42 +00:00
src = fetchFromGitHub {
2022-01-09 19:00:57 +00:00
owner = "gitless-vcs";
2017-12-12 18:33:42 +00:00
repo = "gitless";
2019-12-30 08:13:43 +00:00
rev = "v${version}";
2022-01-04 07:40:31 +00:00
sha256 = "sha256-xo5EWtP2aN8YzP8ro3bnxZwUGUp0PHD0g8hk+Y+gExE=";
2017-12-12 18:33:42 +00:00
};
propagatedBuildInputs = with pythonPackages; [ sh pygit2 clint ];
doCheck = false;
meta = with lib; {
homepage = "https://gitless.com/";
2017-12-12 18:33:42 +00:00
description = "A version control system built on top of Git";
license = licenses.gpl2;
platforms = platforms.all;
maintainers = [ maintainers.cransom ];
};
}