Merge pull request #8116 from monocell/hashcat-update
hashcat: fix build and update to 0.49
This commit is contained in:
commit
35070aa1ed
1 changed files with 4 additions and 4 deletions
|
@ -1,10 +1,10 @@
|
||||||
{ stdenv, fetchurl, p7zip, patchelf }:
|
{ stdenv, fetchurl, p7zip, patchelf, gmp }:
|
||||||
|
|
||||||
assert stdenv.isLinux;
|
assert stdenv.isLinux;
|
||||||
|
|
||||||
let
|
let
|
||||||
bits = if stdenv.system == "x86_64-linux" then "64" else "32";
|
bits = if stdenv.system == "x86_64-linux" then "64" else "32";
|
||||||
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc ];
|
libPath = stdenv.lib.makeLibraryPath [ stdenv.cc.libc gmp ];
|
||||||
|
|
||||||
fixBin = x: ''
|
fixBin = x: ''
|
||||||
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
||||||
|
@ -13,11 +13,11 @@ let
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "hashcat-${version}";
|
name = "hashcat-${version}";
|
||||||
version = "0.47";
|
version = "0.49";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://hashcat.net/files/${name}.7z";
|
url = "http://hashcat.net/files/${name}.7z";
|
||||||
sha256 = "0mc4lv4qfxabp794xfzgr63fhwk7lvbg12pry8a96lldp0jwp6i3";
|
sha256 = "0va07flncihgmnri5wj0jn636w86x5qwm4jmj2halcyg7qwqijh2";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ p7zip patchelf ];
|
buildInputs = [ p7zip patchelf ];
|
||||||
|
|
Loading…
Reference in a new issue