mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-06-08 10:09:04 +02:00
Added lazygit
This commit is contained in:
parent
0b9ea46061
commit
28b010cdbc
3 changed files with 44 additions and 1 deletions
22
packages/buildbot-badges/default.nix
Normal file
22
packages/buildbot-badges/default.nix
Normal 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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue