universe/home/system/packages/derivations/bunnyfetch/default.nix

14 lines
203 B
Nix
Raw Normal View History

2025-03-02 11:53:58 +00:00
{
lib,
coreutils,
writeShellApplication,
}: let
in
writeShellApplication {
name = "bunnyfetch";
runtimeInputs = [
coreutils
];
text = builtins.readFile ./bunnyfetch.sh;
}