mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
52 lines
1.4 KiB
Nix
52 lines
1.4 KiB
Nix
{ lib, gccStdenv, fetchFromGitLab, cudatoolkit
|
|
, config
|
|
, cudaSupport ? config.cudaSupport
|
|
, pkg-config }:
|
|
|
|
gccStdenv.mkDerivation rec {
|
|
pname = "truecrack";
|
|
version = "3.6";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "kalilinux";
|
|
repo = "packages/truecrack";
|
|
rev = "debian/${version}+git20150326-0kali1";
|
|
sha256 = "+Rw9SfaQtO1AJO6UVVDMCo8DT0dYEbv7zX8SI+pHCRQ=";
|
|
};
|
|
|
|
configureFlags = (if cudaSupport then [
|
|
"--with-cuda=${cudatoolkit}"
|
|
] else [
|
|
"--enable-cpu"
|
|
]);
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = lib.optionals cudaSupport [
|
|
cudatoolkit
|
|
];
|
|
|
|
# Workaround build failure on -fno-common toolchains like upstream
|
|
# gcc-10. Otherwise build fails as:
|
|
# ld: CpuAes.o:/build/source/src/Crypto/CpuAes.h:1233: multiple definition of
|
|
# `t_rc'; CpuCore.o:/build/source/src/Crypto/CpuAes.h:1237: first defined here
|
|
# TODO: remove on upstream fixes it:
|
|
# https://gitlab.com/kalilinux/packages/truecrack/-/issues/1
|
|
env.NIX_CFLAGS_COMPILE = "-fcommon";
|
|
|
|
installFlags = [ "prefix=$(out)" ];
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "A brute-force password cracker for TrueCrypt volumes, optimized for Nvidia Cuda technology";
|
|
mainProgram = "truecrack";
|
|
homepage = "https://gitlab.com/kalilinux/packages/truecrack";
|
|
broken = cudaSupport;
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ethancedwards8 ];
|
|
};
|
|
}
|