mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-04 11:27:28 +00:00
hash-identifier: init at 1.2
This commit is contained in:
parent
683c3a86f3
commit
36f6ee3deb
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/security/hash-identifier/default.nix
Normal file
27
pkgs/tools/security/hash-identifier/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ lib, fetchFromGitLab, python3Packages }:
|
||||||
|
|
||||||
|
python3Packages.buildPythonApplication rec {
|
||||||
|
pname = "hash-identifier";
|
||||||
|
version = "1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "kalilinux";
|
||||||
|
repo = "packages/hash-identifier";
|
||||||
|
rev = "kali/${version}+git20180314-0kali1";
|
||||||
|
sha256 = "1amz48ijwjjkccg6gmdn3ffnyp2p52ksagy4m9gy8l2v5wj3j32h";
|
||||||
|
};
|
||||||
|
|
||||||
|
format = "other"; # no setup.py
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
install -Dm0775 hash-id.py $out/bin/hash-identifier
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Software to identify the different types of hashes used to encrypt data and especially passwords.";
|
||||||
|
homepage = "https://github.com/blackploit/hash-identifier";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ ethancedwards8 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -5603,6 +5603,8 @@ in
|
||||||
|
|
||||||
hash_extender = callPackage ../tools/security/hash_extender { };
|
hash_extender = callPackage ../tools/security/hash_extender { };
|
||||||
|
|
||||||
|
hash-identifier = callPackage ../tools/security/hash-identifier { };
|
||||||
|
|
||||||
hash-slinger = callPackage ../tools/security/hash-slinger { };
|
hash-slinger = callPackage ../tools/security/hash-slinger { };
|
||||||
|
|
||||||
haskell-language-server = callPackage ../development/tools/haskell/haskell-language-server/withWrapper.nix { };
|
haskell-language-server = callPackage ../development/tools/haskell/haskell-language-server/withWrapper.nix { };
|
||||||
|
|
Loading…
Add table
Reference in a new issue