summaryrefslogtreecommitdiff
path: root/pkgs/treefetch.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-10-07 10:10:55 -0400
committerseth <[email protected]>2023-10-07 10:18:46 -0400
commit519191cd9f31d1fe1c205535ddc4efe5f2e63793 (patch)
tree441a3b0cbf33a15ac052a1fd6a6894cf169f493b /pkgs/treefetch.nix
parent62a26a94a11774b7c14ea10cde0ca2294990fb9b (diff)
treewide!: remove flake-parts
while i love flake parts, i want to keep dependencies for this project as small as possible
Diffstat (limited to 'pkgs/treefetch.nix')
-rw-r--r--pkgs/treefetch.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/treefetch.nix b/pkgs/treefetch.nix
deleted file mode 100644
index dd8283a..0000000
--- a/pkgs/treefetch.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- lib,
- fetchFromGitHub,
- rustPlatform,
-}:
-rustPlatform.buildRustPackage {
- pname = "treefetch";
- version = "unstable-2022-06-08";
-
- src = fetchFromGitHub {
- owner = "angelofallars";
- repo = "treefetch";
- rev = "02f65e11e1f23d5fa9e66335eb5ff4f2f6b01400";
- sha256 = "sha256-FDiulTit492KwV46A3qwjHQwzpjVJvIXTfTrMufXd5k=";
- };
-
- cargoSha256 = "sha256-8HJYYPBogkgEfK3kv8dFUFaqUhvgYAOrhUIyZo3bqp8=";
-
- meta = with lib; {
- 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;
- };
-}