lol

psudohash: add mainProgram

+9 -6
+9 -6
pkgs/tools/security/psudohash/default.nix
··· 1 - { 2 - lib, 3 - fetchFromGitHub, 4 - stdenv, 5 - python3 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , python3 6 5 }: 7 6 8 7 stdenv.mkDerivation rec { ··· 12 11 src = fetchFromGitHub { 13 12 owner = "t3l3machus"; 14 13 repo = "psudohash"; 14 + # https://github.com/t3l3machus/psudohash/issues/8 15 15 rev = "2d586dec8b5836546ae54b924eb59952a7ee393c"; 16 16 hash = "sha256-l/Rp9405Wf6vh85PFrRTtTLJE7GPODowseNqEw42J18="; 17 17 }; 18 18 19 - buildInputs = [ python3 ]; 19 + buildInputs = [ 20 + python3 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 + mainProgram = "psudohash"; 39 42 }; 40 43 }