hashid: init at 3.1.4-unstable-2015-03-17

This commit is contained in:
D3vil0p3r 2024-02-13 21:26:32 +01:00 committed by GitHub
parent 00aa9078e0
commit 787b9af321
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 25 additions and 0 deletions

View File

@ -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 ];
};
}