mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
Added lazygit
This commit is contained in:
parent
0b9ea46061
commit
28b010cdbc
3 changed files with 44 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
|
||||
|
||||
luj.hmgr.julien = {
|
||||
home.packages = with pkgs; [ unstable.deploy-rs nixpkgs-review nixpkgs-fmt gh sops unstable.nix-eval-jobs nix-bisect htop ];
|
||||
home.packages = with pkgs; [ unstable.deploy-rs nixpkgs-review nixpkgs-fmt gh sops unstable.nix-eval-jobs nix-bisect htop hydrasect tmux lazygit ];
|
||||
home.stateVersion = "22.11";
|
||||
luj.programs.neovim.enable = true;
|
||||
luj.programs.ssh-client.enable = true;
|
||||
|
|
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;
|
||||
};
|
21
packages/hydrasect/default.nix
Normal file
21
packages/hydrasect/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ pkgs, lib, ... }:
|
||||
|
||||
pkgs.stdenv.mkDerivation rec {
|
||||
name = "hydrasect";
|
||||
src = stdenv.fetchGit {
|
||||
url = "https://git.qyliss.net/hydrasect/";
|
||||
ref = "main";
|
||||
rev = "e8ac7c351122f1a8fc3dbf0cd4805cf2e83d14da";
|
||||
};
|
||||
|
||||
nativebuildInputs = with pkgs; [ meson rustc ninja pkg-config ];
|
||||
|
||||
buildInputs = nativebuildInputs;
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with pkgs.lib; {
|
||||
homepage = "https://git.qyliss.net/hydrasect/";
|
||||
license = with licenses; [ gpl3Only ];
|
||||
};
|
||||
}
|
Loading…
Add table
Reference in a new issue