Added nixgreety package

This commit is contained in:
Jan-Bulthuis 2025-02-23 14:50:14 +01:00
parent 539b63cc1c
commit 839df21c46
2 changed files with 20 additions and 0 deletions

View File

@ -10,6 +10,7 @@ let
wqy-microhei = prev.callPackage ./fonts/wqy-microhei.nix { };
wqy-bitmapsong = prev.callPackage ./fonts/wqy-bitmapsong.nix { };
nixgreety = prev.callPackage ./programs/nixgreety.nix { };
# ly = prev.callPackage ./programs/ly/default.nix { };
};
in

View File

@ -0,0 +1,19 @@
{ pkgs, ... }:
with pkgs;
rustPlatform.buildRustPackage {
pname = "nixgreety";
version = "master";
src = fetchFromGitea {
domain = "git.bulthuis.dev";
owner = "Jan";
repo = "nixgreety";
rev = "4b5f812e95f6359ce61aef685005dc4013f0fb5f";
hash = "sha256-/eikqX/2byDi04v1XvsBVva1Vs7OGLl/cC/Vrq+QF9A=";
};
cargoHash = "sha256-pklKVzYoChRqPZ/D3BsMGnaBFd615TKbvoAy7iU8UtA=";
useFetchCargoVendor = true;
}