diff options
| author | seth <[email protected]> | 2023-03-02 21:55:16 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-03-02 22:01:10 -0500 |
| commit | 6ca203faa2702f0f6c759adb8aa23692f29ccaba (patch) | |
| tree | 8df2cda1fbb5ff0c2d75f7151100ac6712528fa3 /pkgs/treefetch.nix | |
initial commit
Diffstat (limited to 'pkgs/treefetch.nix')
| -rw-r--r-- | pkgs/treefetch.nix | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/treefetch.nix b/pkgs/treefetch.nix new file mode 100644 index 0000000..247354d --- /dev/null +++ b/pkgs/treefetch.nix @@ -0,0 +1,30 @@ +{ + lib, + callPackage, + fetchFromGitHub, + naersk, +}: let + commit = "02f65e11e1f23d5fa9e66335eb5ff4f2f6b01400"; + package = (callPackage naersk {}).buildPackage { + src = fetchFromGitHub { + owner = "angelofallars"; + repo = "treefetch"; + rev = commit; + sha256 = "sha256-FDiulTit492KwV46A3qwjHQwzpjVJvIXTfTrMufXd5k="; + }; + }; +in + with lib; + package + // { + meta = + package.meta + // { + description = "A plant-based system fetch tool made with Rust."; + longDescription = "A comfy and fast system fetch tool made in Rust. Tested to be much faster than neofetch and pfetch."; + homepage = "https://github.com/angelofallars/treefetch"; + license = licenses.gpl3; + maintainers = with maintainers; [getchoo]; + platforms = platforms.all; + }; + } |
