Added lazygit

This commit is contained in:
Luj 2023-01-21 19:35:42 +01:00
parent 0b9ea46061
commit 28b010cdbc
Signed by: luj
GPG key ID: 6FC74C847011FD83
3 changed files with 44 additions and 1 deletions

View file

@ -0,0 +1,22 @@
{ pkgs, lib, buildPythonPackage, cairosvg, klein, jinja2 }:
buildPythonPackage rec {
pname = "buildbot-badges";
inherit (buildbot-pkg) version;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-H0Dn+uTtFyZgyqbk3QQEc5t7CJovyzU+XuCoTe4Ajug=";
};
buildInputs = [ buildbot-pkg ];
propagatedBuildInputs = [ cairosvg klein jinja2 ];
# No tests
doCheck = false;
meta = with lib; {
homepage = "https://buildbot.net/";
description = "Buildbot Badges Plugin";
maintainers = with maintainers; [ julienmalka ];
license = licenses.gpl2;
};