summaryrefslogtreecommitdiff
path: root/pkgs/treefetch
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-16 21:21:55 -0400
committerseth <[email protected]>2024-10-16 23:23:33 -0400
commitc3415f6709e0c03b76547dd5fa8c1e07ce048f61 (patch)
treee2b2e54986dc8b92d8fb484c809ba3d6f36097bb /pkgs/treefetch
parent809f251bb8b7c4676f9f018c7a86188348f33a92 (diff)
tree-wide: no more `with lib;`
Diffstat (limited to 'pkgs/treefetch')
-rw-r--r--pkgs/treefetch/package.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/treefetch/package.nix b/pkgs/treefetch/package.nix
index 445f0af..56769b0 100644
--- a/pkgs/treefetch/package.nix
+++ b/pkgs/treefetch/package.nix
@@ -3,6 +3,7 @@
fetchFromGitHub,
rustPlatform,
}:
+
rustPlatform.buildRustPackage {
pname = "treefetch";
version = "unstable-2022-06-08";
@@ -16,12 +17,13 @@ rustPlatform.buildRustPackage {
cargoHash = "sha256-8HJYYPBogkgEfK3kv8dFUFaqUhvgYAOrhUIyZo3bqp8=";
- meta = with lib; {
+ 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.unix;
+ license = lib.licenses.gpl3;
+ maintainers = with lib.maintainers; [ getchoo ];
+ mainProgram = "treefetch";
+ platforms = lib.platforms.unix;
};
}