summaryrefslogtreecommitdiff
path: root/pkgs/slick.nix
diff options
context:
space:
mode:
authorGrisha Shipunov2025-01-11 03:55:19 +0100
committerGrisha Shipunov2025-01-11 03:55:19 +0100
commit62e2519639faa250f43f9e80e69906a59d07a44e (patch)
tree08d662d7674904d566d2dd7ccf85affb9ddd7cd9 /pkgs/slick.nix
parent595d4935de99cc2ff10be9eaddac498c7c38489f (diff)
delete legacy stuff and reformat
Diffstat (limited to 'pkgs/slick.nix')
-rw-r--r--pkgs/slick.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/slick.nix b/pkgs/slick.nix
deleted file mode 100644
index c476440..0000000
--- a/pkgs/slick.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, lib, openssl, pkgconfig, fetchFromGitHub, rustPlatform }:
-
-rustPlatform.buildRustPackage rec {
- pname = "slick";
- version = "0.10.0";
-
- src = fetchFromGitHub {
- owner = "nbari";
- repo = pname;
- rev = version;
- sha256 = "sha256-GM9OHnySc3RVkfaK7yMf1LqpGdz3emq2H/3tSAph4jw=";
- };
-
- buildInputs = [ openssl pkgconfig ];
- nativeBuildInputs = [ pkgconfig ];
-
- cargoSha256 = "sha256-2WxFprq+AcXGXDMjMQvqKTkeWQEWM/z2Fz6qYPtSFGw=";
-
- meta = with lib; {
- description = "Async ZSH prompt";
- homepage = "https://github.com/nbari/slick";
- license = licenses.bsd3;
- };
-}