mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 13:13:09 +00:00
![stuebinm](/assets/img/avatar_default.png)
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.
47 lines
1.0 KiB
Nix
47 lines
1.0 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, openssl
|
|
, getconf
|
|
, util-linux
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "scrypt";
|
|
version = "1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.tarsnap.com/scrypt/${pname}-${version}.tgz";
|
|
sha256 = "sha256-1jLBGTQgrG+uv5SC5l4z06VmTszWQ7CaUJ0h0cHym+I=";
|
|
};
|
|
|
|
outputs = [ "out" "lib" "dev" ];
|
|
|
|
configureFlags = [ "--enable-libscrypt-kdf" ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
nativeBuildInputs = [ getconf ];
|
|
|
|
patchPhase = ''
|
|
for f in Makefile.in autotools/Makefile.am libcperciva/cpusupport/Build/cpusupport.sh configure ; do
|
|
substituteInPlace $f --replace "command -p " ""
|
|
done
|
|
|
|
patchShebangs tests/test_scrypt.sh
|
|
'';
|
|
|
|
doCheck = true;
|
|
checkTarget = "test";
|
|
nativeCheckInputs = lib.optionals stdenv.isLinux [ util-linux ];
|
|
|
|
meta = with lib; {
|
|
description = "Encryption utility";
|
|
mainProgram = "scrypt";
|
|
homepage = "https://www.tarsnap.com/scrypt.html";
|
|
license = licenses.bsd2;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ thoughtpolice ];
|
|
};
|
|
}
|