tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
hash-identifier: init at 1.2
Ethan Edwards
4 years ago
36f6ee3d
683c3a86
+29
2 changed files
expand all
collapse all
unified
split
pkgs
tools
security
hash-identifier
default.nix
top-level
all-packages.nix
+27
pkgs/tools/security/hash-identifier/default.nix
reviewed
···
1
1
+
{ lib, fetchFromGitLab, python3Packages }:
2
2
+
3
3
+
python3Packages.buildPythonApplication rec {
4
4
+
pname = "hash-identifier";
5
5
+
version = "1.2";
6
6
+
7
7
+
src = fetchFromGitLab {
8
8
+
owner = "kalilinux";
9
9
+
repo = "packages/hash-identifier";
10
10
+
rev = "kali/${version}+git20180314-0kali1";
11
11
+
sha256 = "1amz48ijwjjkccg6gmdn3ffnyp2p52ksagy4m9gy8l2v5wj3j32h";
12
12
+
};
13
13
+
14
14
+
format = "other"; # no setup.py
15
15
+
16
16
+
installPhase = ''
17
17
+
install -Dm0775 hash-id.py $out/bin/hash-identifier
18
18
+
'';
19
19
+
20
20
+
meta = with lib; {
21
21
+
description = "Software to identify the different types of hashes used to encrypt data and especially passwords.";
22
22
+
homepage = "https://github.com/blackploit/hash-identifier";
23
23
+
license = licenses.gpl3Plus;
24
24
+
platforms = platforms.unix;
25
25
+
maintainers = with maintainers; [ ethancedwards8 ];
26
26
+
};
27
27
+
}
+2
pkgs/top-level/all-packages.nix
reviewed
···
5603
5603
5604
5604
hash_extender = callPackage ../tools/security/hash_extender { };
5605
5605
5606
5606
+
hash-identifier = callPackage ../tools/security/hash-identifier { };
5607
5607
+
5606
5608
hash-slinger = callPackage ../tools/security/hash-slinger { };
5607
5609
5608
5610
haskell-language-server = callPackage ../development/tools/haskell/haskell-language-server/withWrapper.nix { };