about summary refs log tree commit diff
path: root/pkgs/tools/misc/checkpwn/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/checkpwn/default.nix')
-rw-r--r--pkgs/tools/misc/checkpwn/default.nix36
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/tools/misc/checkpwn/default.nix b/pkgs/tools/misc/checkpwn/default.nix
deleted file mode 100644
index 994fecc6c4db..000000000000
--- a/pkgs/tools/misc/checkpwn/default.nix
+++ /dev/null
@@ -1,36 +0,0 @@
-{ lib
-, rustPlatform
-, fetchCrate
-, stdenv
-, darwin
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "checkpwn";
-  version = "0.5.6";
-
-  src = fetchCrate {
-    inherit pname version;
-    hash = "sha256-M0Jb+8rKn4KVuumNSsM6JEbSOoBOFy9mmXiCnUnDgak=";
-  };
-
-  cargoHash = "sha256-G+QWnGf+Zp94EHVnYM3Q/iEhEQMU2O/c4i5ya/dY7K4=";
-
-  buildInputs = lib.optionals stdenv.isDarwin [
-    darwin.apple_sdk.frameworks.Security
-  ];
-
-  # requires internet access
-  checkFlags = [
-    "--skip=test_cli_"
-  ];
-
-  meta = with lib; {
-    description = "Check Have I Been Pwned and see if it's time for you to change passwords";
-    homepage = "https://github.com/brycx/checkpwn";
-    changelog = "https://github.com/brycx/checkpwn/releases/tag/${version}";
-    license = licenses.mit;
-    maintainers = with maintainers; [ figsoda ];
-    mainProgram = "checkpwn";
-  };
-}