summaryrefslogtreecommitdiff
path: root/pkgs/cfspeedtest.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/cfspeedtest.nix')
-rw-r--r--pkgs/cfspeedtest.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/cfspeedtest.nix b/pkgs/cfspeedtest.nix
deleted file mode 100644
index be357c5..0000000
--- a/pkgs/cfspeedtest.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{
- lib,
- fetchFromGitHub,
- rustPlatform,
-}:
-rustPlatform.buildRustPackage rec {
- pname = "cfspeedtest";
- version = "1.1.1";
-
- src = fetchFromGitHub {
- owner = "code-inflation";
- repo = pname;
- rev = "v${version}";
- sha256 = "sha256-YF/jf1TzNW1QswNefQ4qKeXDyjFoN9/AWcjoeENCgvc=";
- };
-
- cargoLock = {
- lockFile = "${src}/Cargo.lock";
- };
-
- meta = with lib; {
- homepage = "https://github.com/code-inflation/cfspeedtest";
- description = "Unofficial CLI for speed.cloudflare.com";
- license = licenses.mit;
- maintainers = with maintainers; [getchoo];
- };
-}