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,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 ];
};
}