about summary refs log tree commit diff
path: root/pkgs/tools/misc/pfetch-rs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/pfetch-rs/default.nix')
-rw-r--r--pkgs/tools/misc/pfetch-rs/default.nix30
1 files changed, 0 insertions, 30 deletions
diff --git a/pkgs/tools/misc/pfetch-rs/default.nix b/pkgs/tools/misc/pfetch-rs/default.nix
deleted file mode 100644
index 143e340a4c0d..000000000000
--- a/pkgs/tools/misc/pfetch-rs/default.nix
+++ /dev/null
@@ -1,30 +0,0 @@
-{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
-
-rustPlatform.buildRustPackage rec {
-  pname = "pfetch-rs";
-  version = "2.9.2";
-
-  src = fetchFromGitHub {
-    owner = "Gobidev";
-    repo = pname;
-    rev = "v${version}";
-    hash = "sha256-1Mw20O64I0UeAOO4Gea8cAbNnHkWOMvoRawIAZ62kTI=";
-  };
-
-  cargoHash = "sha256-Jx8g49rMatXMV1KvoFGBhXKmf77WR4uE/Xewl5TMeWM=";
-
-  buildInputs = lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.AppKit
-    darwin.apple_sdk.frameworks.DisplayServices
-  ];
-
-
-  meta = with lib; {
-    description = "Rewrite of the pfetch system information tool in Rust";
-    homepage = "https://github.com/Gobidev/pfetch-rs";
-    changelog = "https://github.com/Gobidev/pfetch-rs/releases/tag/v${version}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ gobidev ];
-    mainProgram = "pfetch";
-  };
-}