nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

hash-identifier: init at 1.2

+29
+27
pkgs/tools/security/hash-identifier/default.nix
··· 1 + { lib, fetchFromGitLab, python3Packages }: 2 + 3 + python3Packages.buildPythonApplication rec { 4 + pname = "hash-identifier"; 5 + version = "1.2"; 6 + 7 + src = fetchFromGitLab { 8 + owner = "kalilinux"; 9 + repo = "packages/hash-identifier"; 10 + rev = "kali/${version}+git20180314-0kali1"; 11 + sha256 = "1amz48ijwjjkccg6gmdn3ffnyp2p52ksagy4m9gy8l2v5wj3j32h"; 12 + }; 13 + 14 + format = "other"; # no setup.py 15 + 16 + installPhase = '' 17 + install -Dm0775 hash-id.py $out/bin/hash-identifier 18 + ''; 19 + 20 + meta = with lib; { 21 + description = "Software to identify the different types of hashes used to encrypt data and especially passwords."; 22 + homepage = "https://github.com/blackploit/hash-identifier"; 23 + license = licenses.gpl3Plus; 24 + platforms = platforms.unix; 25 + maintainers = with maintainers; [ ethancedwards8 ]; 26 + }; 27 + }
+2
pkgs/top-level/all-packages.nix
··· 5603 5603 5604 5604 hash_extender = callPackage ../tools/security/hash_extender { }; 5605 5605 5606 + hash-identifier = callPackage ../tools/security/hash-identifier { }; 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 { };