Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: aa1edd09f15f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b36bf7e2e22b
Choose a head ref
  • 2 commits
  • 2 files changed
  • 1 contributor

Commits on May 28, 2019

  1. hashcat: 5.0.0 -> 5.1.0

    dywedir committed May 28, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    dywedir Vlad M.
    Copy the full SHA
    b39e516 View commit details

Commits on Jun 3, 2019

  1. hashcat: 5.0.0 -> 5.1.0 (#62142)

    hashcat: 5.0.0 -> 5.1.0
    dywedir authored Jun 3, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b36bf7e View commit details
Showing with 5 additions and 27 deletions.
  1. +5 −5 pkgs/tools/security/hashcat/default.nix
  2. +0 −22 pkgs/tools/security/hashcat/use-installed-xxhash.patch
10 changes: 5 additions & 5 deletions pkgs/tools/security/hashcat/default.nix
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
{ stdenv, fetchurl, makeWrapper, opencl-headers, ocl-icd, xxHash }:

stdenv.mkDerivation rec {
name = "hashcat-${version}";
version = "5.0.0";
pname = "hashcat";
version = "5.1.0";

src = fetchurl {
url = "https://hashcat.net/files/hashcat-${version}.tar.gz";
sha256 = "13xh1lmzdppvx8wr8blqhdr8vpa24j099kz2xzb9pcnqy26dk4kh";
sha256 = "0f73y4cg8c7a6q7x34qvpfi4g3lw6j9bnn0a13g43aqyiskflfr8";
};
patches = [ ./use-installed-xxhash.patch ];

nativeBuildInputs = [ makeWrapper ];
buildInputs = [ opencl-headers xxHash ];

makeFlags = [
"PREFIX=${placeholder "out"}"
"OPENCL_HEADERS_KHRONOS=${opencl-headers}/include"
"COMPTIME=1337"
"VERSION_TAG=${version}"
"USE_SYSTEM_OPENCL=1"
"USE_SYSTEM_XXHASH=1"
];

postFixup = ''
22 changes: 0 additions & 22 deletions pkgs/tools/security/hashcat/use-installed-xxhash.patch

This file was deleted.