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

27 lines
633 B
Nix
Raw Normal View History

2017-12-12 18:33:42 +00:00
{ fetchFromGitHub, pythonPackages, stdenv }:
pythonPackages.buildPythonApplication rec {
ver = "0.8.6";
2017-12-12 18:33:42 +00:00
name = "gitless-${ver}";
src = fetchFromGitHub {
owner = "sdg-mit";
repo = "gitless";
rev = "v${ver}";
sha256 = "1q6y38f8ap6q1livvfy0pfnjr0l8b68hyhc9r5v87fmdyl7y7y8g";
2017-12-12 18:33:42 +00:00
};
propagatedBuildInputs = with pythonPackages; [ sh pygit2 clint ];
doCheck = false;
meta = with stdenv.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 ];
};
}