tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
psudohash: add mainProgram
Fabian Affolter
2 years ago
2bfea648
5cd2baa5
+9
-6
1 changed file
expand all
collapse all
unified
split
pkgs
tools
security
psudohash
default.nix
+9
-6
pkgs/tools/security/psudohash/default.nix
···
1
1
-
{
2
2
-
lib,
3
3
-
fetchFromGitHub,
4
4
-
stdenv,
5
5
-
python3
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitHub
4
4
+
, python3
6
5
}:
7
6
8
7
stdenv.mkDerivation rec {
···
12
11
src = fetchFromGitHub {
13
12
owner = "t3l3machus";
14
13
repo = "psudohash";
14
14
+
# https://github.com/t3l3machus/psudohash/issues/8
15
15
rev = "2d586dec8b5836546ae54b924eb59952a7ee393c";
16
16
hash = "sha256-l/Rp9405Wf6vh85PFrRTtTLJE7GPODowseNqEw42J18=";
17
17
};
18
18
19
19
-
buildInputs = [ python3 ];
19
19
+
buildInputs = [
20
20
+
python3
21
21
+
];
20
22
21
23
installPhase = ''
22
24
runHook preInstall
···
36
38
homepage = "https://github.com/t3l3machus/psudohash";
37
39
license = licenses.mit;
38
40
maintainers = with maintainers; [ exploitoverload ];
41
41
+
mainProgram = "psudohash";
39
42
};
40
43
}