mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
commit
17c33c668e
2 changed files with 22 additions and 0 deletions
20
pkgs/tools/security/scrypt/default.nix
Normal file
20
pkgs/tools/security/scrypt/default.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{ stdenv, fetchurl, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "scrypt-${version}";
|
||||
version = "1.1.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.tarsnap.com/scrypt/scrypt-1.1.6.tgz";
|
||||
sha256 = "dfd0d1a544439265bbb9b58043ad3c8ce50a3987b44a61b1d39fd7a3ed5b7fb8";
|
||||
};
|
||||
|
||||
buildInputs = [ openssl ];
|
||||
|
||||
meta = {
|
||||
description = "The scrypt encryption utility";
|
||||
homepage = https://www.tarsnap.com/scrypt.html;
|
||||
license = "BSD";
|
||||
platforms = stdenv.lib.platforms.all;
|
||||
};
|
||||
}
|
|
@ -1680,6 +1680,8 @@ let
|
|||
|
||||
scrot = callPackage ../tools/graphics/scrot { };
|
||||
|
||||
scrypt = callPackage ../tools/security/scrypt { };
|
||||
|
||||
sdcv = callPackage ../applications/misc/sdcv { };
|
||||
|
||||
seccure = callPackage ../tools/security/seccure/0.4.nix { };
|
||||
|
|
Loading…
Reference in a new issue