about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorD3vil0p3r <vozaanthony@gmail.com>2024-02-13 21:26:32 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-04-25 06:14:29 +0000
commitfb1320d867ac6ae32ca9e2d7549545163b56e750 (patch)
tree6b7671ea08300ef37259b6504044a9fac99afcf7 /pkgs/by-name
parent6abeba70778c0e40f64910956d957025deac2f34 (diff)
hashid: init at 3.1.4-unstable-2015-03-17
(cherry picked from commit 787b9af321067e8a284675c6c1a02111ab262c53)
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/ha/hashid/package.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/by-name/ha/hashid/package.nix b/pkgs/by-name/ha/hashid/package.nix
new file mode 100644
index 0000000000000..5679fb1a272d3
--- /dev/null
+++ b/pkgs/by-name/ha/hashid/package.nix
@@ -0,0 +1,25 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, python3Packages
+}:
+
+python3Packages.buildPythonApplication {
+  pname = "hashid";
+  version = "3.1.4-unstable-2015-03-17";
+
+  src = fetchFromGitHub {
+    owner = "psypanda";
+    repo = "hashID";
+    rev = "7e8473a823060e56d4b6090a98591e252bd9505e";
+    hash = "sha256-R2r/UYRcHbpfOz/XqtSUIpd826eT1Erfo7frAiArT34=";
+  };
+
+  meta = with lib; {
+    description = "Software to identify the different types of hashes";
+    homepage = "https://github.com/psypanda/hashID";
+    mainProgram = "hashid";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ d3vil0p3r ];
+  };
+}