about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-20 11:14:16 +0100
committerGitHub <noreply@github.com>2021-01-20 11:14:16 +0100
commitcb6adcda3ce1da3d5931a8ba00e81681763879eb (patch)
tree76be531b400ed907b92d92236dd37c17127204af /pkgs/tools
parenta121a5c5e4616e0a333968f056c87efa7c9c5ca5 (diff)
parentdf75b21e7316ded11e695850f11e795cada6d553 (diff)
Merge pull request #110019 from fabaff/pwdsafety
pwdsafety: init at 0.1.4
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/pwdsafety/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/tools/security/pwdsafety/default.nix b/pkgs/tools/security/pwdsafety/default.nix
new file mode 100644
index 0000000000000..2a6ed328e49e1
--- /dev/null
+++ b/pkgs/tools/security/pwdsafety/default.nix
@@ -0,0 +1,25 @@
+{ buildGoModule
+, fetchFromGitHub
+, lib
+}:
+
+buildGoModule rec {
+  pname = "pwdsafety";
+  version = "0.1.4";
+
+  src = fetchFromGitHub {
+    owner = "edoardottt";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1qnkabgc2924qg9x1ij51jq7lnxzcj1ygdp3x4mzi9gl532i191w";
+  };
+
+  vendorSha256 = "0avm4zwwqv476yrraaf5xkc1lac0mwnmzav5wckifws6r4x3xrsb";
+
+  meta = with lib; {
+    description = "Command line tool checking password safety";
+    homepage = "https://github.com/edoardottt/pwdsafety";
+    license = with licenses; [ gpl3Plus ];
+    maintainers = with maintainers; [ fab ];
+  };
+}