treewide: with stdenv.lib; in meta -> with lib;
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, appimageTools
|
||||
, makeWrapper
|
||||
@@ -53,7 +53,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
passthru.updateScript = ./update.sh;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Multi-platform password manager";
|
||||
longDescription = ''
|
||||
1Password is a multi-platform package manager.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
version = "1.1.0";
|
||||
@@ -13,7 +13,7 @@ buildGoPackage rec {
|
||||
sha256 = "0827vl2bxd6m2rbj00x7857cs7cic3mlg5nlhqzd0n73dm5vk2za";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://rsc.io/2fa";
|
||||
description = "Two-factor authentication on the command line";
|
||||
maintainers = with maintainers; [ rvolosatovs ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoconf
|
||||
, automake
|
||||
@@ -60,7 +60,7 @@ stdenv.mkDerivation rec {
|
||||
autoconf
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card readers";
|
||||
longDescription = ''
|
||||
acsccid is a PC/SC driver for Linux/Mac OS X and it supports ACS CCID smart card
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, sharutils, makeWrapper }:
|
||||
{ lib, stdenv, fetchurl, sharutils, makeWrapper }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aespipe";
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
--prefix PATH : $out/bin:${stdenv.lib.makeBinPath [ sharutils ]}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "AES encrypting or decrypting pipe";
|
||||
homepage = "http://loop-aes.sourceforge.net/aespipe.README";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, afl}:
|
||||
{ lib, stdenv, afl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = stdenv.lib.getVersion afl;
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
chmod +x $out/bin/get-libdislocator-so
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://lcamtuf.coredump.cx/afl/";
|
||||
description = ''
|
||||
Drop-in replacement for the libc allocator which improves
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, afl, python2, zlib, pkgconfig, glib, perl
|
||||
{ lib, stdenv, fetchurl, afl, python2, zlib, pkgconfig, glib, perl
|
||||
, texinfo, libuuid, flex, bison, pixman, autoconf
|
||||
}:
|
||||
|
||||
@@ -69,7 +69,7 @@ stdenv.mkDerivation {
|
||||
"--localstatedir=/var"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.qemu.org/";
|
||||
description = "Fork of QEMU with AFL instrumentation support";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, aflplusplus}:
|
||||
{ lib, stdenv, aflplusplus}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = stdenv.lib.getVersion aflplusplus;
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
chmod +x $out/bin/get-libdislocator-so
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/vanhauser-thc/AFLplusplus";
|
||||
description = ''
|
||||
Drop-in replacement for the libc allocator which improves
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, aflplusplus}:
|
||||
{ lib, stdenv, aflplusplus}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = stdenv.lib.getVersion aflplusplus;
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation {
|
||||
chmod +x $out/bin/get-libtokencap-so
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/vanhauser-thc/AFLplusplus";
|
||||
description = "strcmp & memcmp token capture library";
|
||||
license = stdenv.lib.licenses.asl20;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, aflplusplus, python2, zlib, pkgconfig, glib, perl
|
||||
{ lib, stdenv, fetchurl, aflplusplus, python2, zlib, pkgconfig, glib, perl
|
||||
, texinfo, libuuid, flex, bison, pixman, autoconf
|
||||
}:
|
||||
|
||||
@@ -73,7 +73,7 @@ stdenv.mkDerivation {
|
||||
"--localstatedir=/var"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.qemu.org/";
|
||||
description = "Fork of QEMU with AFL++ instrumentation support";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
|
||||
{ lib, stdenv, fetchurl, flex, bison, libmhash, zlib, acl, attr, libselinux, pcre }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aide";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
"--with-xattr"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://aide.github.io/";
|
||||
description = "A file and directory integrity checker";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, imagemagick, qrencode
|
||||
{ lib, stdenv, fetchFromGitHub, imagemagick, qrencode
|
||||
, testQR ? false, zbar ? null
|
||||
}:
|
||||
|
||||
@@ -36,7 +36,7 @@ stdenv.mkDerivation {
|
||||
cp * $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/yishilin14/asc-key-to-qr-code-gif";
|
||||
description = "Convert ASCII-armored PGP keys to animated QR code";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "aws-iam-authenticator";
|
||||
@@ -13,7 +13,7 @@ buildGoPackage rec {
|
||||
sha256 = "1ghl2vms9wmvczdl2raqhy0gffxmk24h158gjb5mlw7rggzvb7bg";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/kubernetes-sigs/aws-iam-authenticator";
|
||||
description = "AWS IAM credentials for Kubernetes authentication";
|
||||
license = licenses.asl20;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ buildGoPackage, fetchFromGitHub, libusb1, pkgconfig, stdenv, libiconv }:
|
||||
{ buildGoPackage, fetchFromGitHub, libusb1, pkgconfig, lib, stdenv, libiconv }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "aws-okta";
|
||||
@@ -20,7 +20,7 @@ buildGoPackage rec {
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ libusb1 libiconv ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "aws-vault like tool for Okta authentication";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitHub
|
||||
, unstableGitUpdater
|
||||
, makeWrapper
|
||||
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
|
||||
|
||||
passthru.updateScript = unstableGitUpdater { };
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Bash shell-script implementation of SuperGenPass password generation";
|
||||
longDescription = ''
|
||||
Bash shell-script implementation of SuperGenPass password generation
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
@@ -27,7 +27,7 @@ buildGoModule rec {
|
||||
buildInputs = [ libpcap libusb1 ]
|
||||
++ stdenv.lib.optionals stdenv.isLinux [ libnfnetlink libnetfilter_queue ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A man in the middle tool";
|
||||
longDescription = ''
|
||||
BetterCAP is a powerful, flexible and portable tool created to perform various types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic in realtime, sniff for credentials and much more.
|
||||
|
||||
@@ -24,7 +24,7 @@ let
|
||||
x86_64-linux = "1z1r8327xymqf2h98wb2fb02s41pxc6fh5w4bxmdgpx7k1jx5kvg";
|
||||
}.${system} or "";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A secure and free password manager for all of your devices";
|
||||
homepage = "https://bitwarden.com";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, rustPlatform, fetchFromGitHub, nixosTests
|
||||
{ lib, stdenv, rustPlatform, fetchFromGitHub, nixosTests
|
||||
, pkgconfig, openssl
|
||||
, Security, CoreServices
|
||||
, dbBackend ? "sqlite", libmysqlclient, postgresql }:
|
||||
@@ -37,7 +37,7 @@ in rustPlatform.buildRustPackage rec {
|
||||
|
||||
passthru.tests = nixosTests.bitwarden;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Unofficial Bitwarden compatible server written in Rust";
|
||||
homepage = "https://github.com/dani-garcia/bitwarden_rs";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, nixosTests }:
|
||||
{ lib, stdenv, fetchurl, nixosTests }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bitwarden_rs-vault";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
passthru.tests = nixosTests.bitwarden;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Integrates the web vault into bitwarden_rs";
|
||||
homepage = "https://github.com/dani-garcia/bw_web_builds";
|
||||
platforms = platforms.all;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
{ lib, stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bmrsa";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
echo -e 'install:\n\tcp bmrsa '$out'/bin' >> Makefile
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "RSA utility";
|
||||
homepage = "http://bmrsa.sourceforge.net/";
|
||||
license = licenses.gpl1;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, cryptsetup }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, cryptsetup }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "bruteforce-luks";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Cracks passwords of LUKS encrypted volumes";
|
||||
longDescription = ''
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3, fetchFromGitHub, makeWrapper, medusa }:
|
||||
{ lib, stdenv, python3, fetchFromGitHub, makeWrapper, medusa }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "brutespray";
|
||||
@@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
||||
cp -r wordlist/ $out/share/brutespray/wordlist
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/x90skysn3k/brutespray";
|
||||
description = "Brute-Forcing from Nmap output - Automatically attempts default creds on found services";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
|
||||
{ lib, stdenv, fetchurl, pcsclite, pkgconfig, libusb1, perl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ccid";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkgconfig perl ];
|
||||
buildInputs = [ pcsclite libusb1 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "ccid drivers for pcsclite";
|
||||
homepage = "https://ccid.apdu.fr/";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub, fetchpatch }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub, fetchpatch }:
|
||||
|
||||
let
|
||||
generic = { patches ? [] }:
|
||||
@@ -17,7 +17,7 @@ let
|
||||
|
||||
inherit patches;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://cfssl.org/";
|
||||
description = "Cloudflare's certificate manager";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "certstrap";
|
||||
@@ -13,7 +13,7 @@ buildGoPackage rec {
|
||||
sha256 = "1ymchnn7c9g3pq7rw4lrwsd6z3wfjx90g7qgrw6r5hssl77mnscj";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Tools to bootstrap CAs, certificate requests, and signed certificates";
|
||||
license = licenses.asl20;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoModule, fetchFromGitHub, go-rice }:
|
||||
{ lib, stdenv, buildGoModule, fetchFromGitHub, go-rice }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "cfssl";
|
||||
@@ -40,7 +40,7 @@ buildGoModule rec {
|
||||
-X github.com/cloudflare/cfssl/cli/version.version=v${version}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://cfssl.org/";
|
||||
description = "Cloudflare's PKI and TLS toolkit";
|
||||
license = licenses.bsd2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitiles, fetchFromGitHub, fetchurl, trousers, leveldb, unzip
|
||||
{ lib, stdenv, fetchFromGitiles, fetchFromGitHub, fetchurl, trousers, leveldb, unzip
|
||||
, scons, pkgconfig, glib, dbus_cplusplus, dbus, protobuf, openssl, snappy, pam
|
||||
}:
|
||||
|
||||
@@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
|
||||
cp ${name}/man/* $out/usr/share/man/man8/.
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "PKCS #11 implementation based on trusted platform module (TPM)";
|
||||
homepage = "https://www.chromium.org/developers/design-documents/chaps-technical-design";
|
||||
maintainers = [ maintainers.tstrobel ];
|
||||
|
||||
@@ -25,7 +25,7 @@ pythonPackages.buildPythonApplication rec {
|
||||
|
||||
KERNEL_SRC_DIR = lib.optionalString withDriver "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Platform Security Assessment Framework";
|
||||
longDescription = ''
|
||||
CHIPSEC is a framework for analyzing the security of PC platforms
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "chkrootkit-0.53";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Locally checks for signs of a rootkit";
|
||||
homepage = "http://www.chkrootkit.org/";
|
||||
license = licenses.bsd2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
{ lib, stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "chntpw";
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
make install PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://pogostick.net/~pnh/ntpasswd/";
|
||||
description = "An utility to reset the password of any user that has a valid local account on a Windows system";
|
||||
maintainers = with stdenv.lib.maintainers; [ deepfire ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, mkDerivation, fetchFromGitHub, qmake, pcsclite, pkgconfig, opensc }:
|
||||
{ lib, stdenv, mkDerivation, fetchFromGitHub, qmake, pcsclite, pkgconfig, opensc }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "chrome-token-signing";
|
||||
@@ -28,7 +28,7 @@ mkDerivation rec {
|
||||
install -D -t $out/lib/mozilla/native-messaging-hosts host-linux/ff/ee.ria.esteid.json
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Chrome and Firefox extension for signing with your eID on the web";
|
||||
homepage = "https://github.com/open-eid/chrome-token-signing/wiki";
|
||||
license = licenses.lgpl21;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkg-config
|
||||
{ lib, stdenv, fetchurl, pkg-config
|
||||
, zlib, bzip2, libiconv, libxml2, openssl, ncurses, curl, libmilter, pcre2
|
||||
, libmspack, systemd, Foundation, json_c, check
|
||||
}:
|
||||
@@ -49,7 +49,7 @@ stdenv.mkDerivation rec {
|
||||
hardeningDisable = [ "format" ];
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.clamav.net";
|
||||
description = "Antivirus engine designed for detecting Trojans, viruses, malware and other malicious threats";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -16,7 +16,7 @@ buildGoModule rec {
|
||||
|
||||
vendorSha256 = "0f3n0wrmg9d2qyn8hlnhf9lsfqd9443myzr04p48v68m8n83j6a9";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Cloud enumeration tool";
|
||||
longDescription = ''
|
||||
A tool to find a company (target) infrastructure, files, and apps on
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, openssl, libgsf, gmp }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkgconfig, autoconf, automake, openssl, libgsf, gmp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
cp crackxls2003 $out/bin/
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/GavinSmith0123/crackxls2003/";
|
||||
description = "Used to break the encryption on old Microsoft Excel and Microsoft Word files";
|
||||
platforms = platforms.linux;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitLab, python2, python2Packages }:
|
||||
{ lib, stdenv, fetchFromGitLab, python2, python2Packages }:
|
||||
|
||||
python2Packages.buildPythonApplication rec {
|
||||
pname = "creddump";
|
||||
@@ -24,7 +24,7 @@ python2Packages.buildPythonApplication rec {
|
||||
cp lsadump.py ${placeholder "out"}/bin/lsadump
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Python tool to extract various credentials and secrets from Windows registry hives";
|
||||
homepage = "https://gitlab.com/kalilinux/packages/creddump";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
, nmap
|
||||
, openvpn
|
||||
, python3Packages
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
, tigervnc
|
||||
}:
|
||||
|
||||
@@ -33,7 +33,7 @@ python3Packages.buildPythonApplication rec {
|
||||
$out/bin/crowbar --help > /dev/null
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/galkan/crowbar";
|
||||
description = "A brute forcing tool that can be used during penetration tests";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, which }:
|
||||
{ lib, stdenv, fetchurl, which }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "crunch";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Wordlist generator";
|
||||
homepage = "https://sourceforge.net/projects/crunch-wordlist/";
|
||||
platforms = platforms.unix;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchzip }:
|
||||
{ lib, stdenv, fetchzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ctmg";
|
||||
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installPhase = "install -D ctmg.sh $out/bin/ctmg";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "An encrypted container manager for Linux using cryptsetup";
|
||||
homepage = "https://git.zx2c4.com/ctmg/about/";
|
||||
license = licenses.isc;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -16,7 +16,7 @@ buildGoModule rec {
|
||||
|
||||
vendorSha256 = "0vpkzykfg1rq4qi1v5lsa0drpil9i6ccfw96k48ppi9hiwzpq94w";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Phishing tool for red teams and pentesters";
|
||||
longDescription = ''
|
||||
DeepSea phishing gear aims to help RTOs and pentesters with the
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, perl, perlPackages }:
|
||||
{ lib, stdenv, fetchFromGitHub, makeWrapper, perl, perlPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dnsenum";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
|
||||
install -vD dns.txt -t $out/share
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/fwaeytens/dnsenum";
|
||||
description = "A tool to enumerate DNS information";
|
||||
maintainers = with maintainers; [ c0bw3b ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python3 }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3 }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "dnsrecon";
|
||||
@@ -34,7 +34,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "DNS Enumeration Script";
|
||||
homepage = "https://github.com/darkoperator/dnsrecon";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -16,7 +16,7 @@ buildGoModule rec {
|
||||
|
||||
vendorSha256 = "0j2cqvskzxbyfrvsv4gm4qwfjm0digizcg157z5iignnknddajax";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast and multi-purpose DNS toolkit";
|
||||
longDescription = ''
|
||||
dnsx is a fast and multi-purpose DNS toolkit allow to run multiple
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
{ fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
, perl
|
||||
}:
|
||||
|
||||
@@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||
chmod +x $out/bin/doona
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/wireghoul/doona";
|
||||
description = "A fork of the Bruteforce Exploit Detector Tool (BED)";
|
||||
longDescription = ''
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, pkgs }:
|
||||
{ lib, stdenv, pkgs }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = "0.0.1";
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation {
|
||||
nativeBuildInputs = with pkgs; [openssl autoconf automake];
|
||||
buildInputs = with pkgs; [libuecc];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Create and manipulate ECC NISTP256 keypairs";
|
||||
homepage = "https://github.com/kaniini/ecdsatool/";
|
||||
license = with licenses; [free];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, pkgs }:
|
||||
{ lib, stdenv, pkgs }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = "0.4.0";
|
||||
@@ -14,7 +14,7 @@ stdenv.mkDerivation {
|
||||
nativeBuildInputs = with pkgs; [ cmake pkgconfig doxygen ];
|
||||
buildInputs = with pkgs; [ libuecc ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tiny collection of programs used for ECDSA (keygen, sign, verify)";
|
||||
homepage = "https://github.com/tcatm/ecdsautils/";
|
||||
license = with licenses; [ mit bsd2 ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, perl, util-linux, keyutils, nss, nspr, python2, pam, enablePython ? false
|
||||
{ lib, stdenv, fetchurl, pkgconfig, perl, util-linux, keyutils, nss, nspr, python2, pam, enablePython ? false
|
||||
, intltool, makeWrapper, coreutils, bash, gettext, cryptsetup, lvm2, rsync, which, lsof }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Enterprise-class stacked cryptographic filesystem";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ obadz ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, makeWrapper
|
||||
, python2
|
||||
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
|
||||
makeWrapper "${python2.interpreter}" "$out/bin/ecryptfs-helper" --add-flags "$out/libexec/ecryptfs-helper.py"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Helper script to create/mount/unemount encrypted directories using eCryptfs without needing root permissions";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ obadz ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, gnu-efi, openssl, sbsigntool, perl, perlPackages,
|
||||
{ lib, stdenv, gnu-efi, openssl, sbsigntool, perl, perlPackages,
|
||||
help2man, fetchgit }:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "efitools";
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
patchShebangs .
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tools for manipulating UEFI secure boot platforms";
|
||||
homepage = "https://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub
|
||||
{ lib, stdenv, fetchFromGitHub
|
||||
, autoreconfHook, pkgconfig
|
||||
, gtk3, nssTools, pcsclite
|
||||
, libxml2, libproxy
|
||||
@@ -56,7 +56,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Belgian electronic identity card (eID) middleware";
|
||||
homepage = "https://eid.belgium.be/en/using_your_eid/installing_the_eid_software/linux/";
|
||||
license = licenses.lgpl3;
|
||||
|
||||
@@ -47,7 +47,7 @@ in stdenv.mkDerivation rec {
|
||||
# its application and shows a generic page
|
||||
dontStrip = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://spideroak.com/solutions/encryptr";
|
||||
description = "Free, private and secure password management tool and e-wallet";
|
||||
license = licenses.unfree;
|
||||
|
||||
@@ -51,7 +51,7 @@ let
|
||||
url = "${baseUrl}/${data.path}";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A well known password manager";
|
||||
homepage = "https://www.enpass.io/";
|
||||
license = licenses.unfree;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, makeWrapper, samba, perl, openldap }:
|
||||
{ lib, stdenv, fetchurl, makeWrapper, samba, perl, openldap }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "enum4linux";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
--prefix PATH : ${stdenv.lib.makeBinPath [ samba openldap ]}
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A tool for enumerating information from Windows and Samba systems";
|
||||
homepage = "https://labs.portcullis.co.uk/tools/enum4linux/";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, openssl }:
|
||||
{ lib, stdenv, fetchFromGitHub, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "eschalot";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
install -D -t $out/bin eschalot worgen
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tor hidden service name generator";
|
||||
homepage = src.meta.homepage;
|
||||
license = licenses.isc;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python3 }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3 }:
|
||||
|
||||
let version = "0.11.1"; in
|
||||
|
||||
@@ -49,7 +49,7 @@ python3.pkgs.buildPythonApplication {
|
||||
rm -rf ${sitePackages}/etc ${sitePackages}/usr ${sitePackages}/var;
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.fail2ban.org/";
|
||||
description = "A program that scans log files for repeated failing login attempts and bans IP addresses";
|
||||
license = licenses.gpl2Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{stdenv, fetchurl}:
|
||||
{lib, stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fcrackzip";
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
# Do not clash with unizp/zipinfo
|
||||
postInstall = "mv $out/bin/zipinfo $out/bin/fcrackzip-zipinfo";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "zip password cracker, similar to fzc, zipcrack and others";
|
||||
homepage = "http://oldhome.schmorp.de/marc/fcrackzip.html";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -20,7 +20,7 @@ buildGoModule rec {
|
||||
# https://github.com/ffuf/ffuf/issues/367
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast web fuzzer written in Go";
|
||||
longDescription = ''
|
||||
FFUF, or “Fuzz Faster you Fool” is an open source web fuzzing tool,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
, cryptsetup
|
||||
@@ -27,7 +27,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
cargoSha256 = "19drjql13z8bw257z10kjppxm25jlfgrpc9g1jf68ka5j2b3nx7k";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Decrypt your LUKS partition using a FIDO2 compatible authenticator";
|
||||
homepage = "https://github.com/shimunn/fido2luks";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python3 }:
|
||||
{ lib, stdenv, fetchFromGitHub, python3 }:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "fierce";
|
||||
@@ -21,7 +21,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "fierce" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/mschwager/fierce";
|
||||
description = "DNS reconnaissance tool for locating non-contiguous IP space";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitLab
|
||||
, fetchpatch
|
||||
, pkgconfig
|
||||
@@ -106,7 +106,7 @@ stdenv.mkDerivation rec {
|
||||
patchShebangs po/check-translations.sh
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://fprint.freedesktop.org/";
|
||||
description = "D-Bus daemon that offers libfprint functionality over the D-Bus interprocess communication bus";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation {
|
||||
cp doc/man/fpupdate.8 $out/share/man/man8
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.f-prot.com";
|
||||
description = "A popular proprietary antivirus program";
|
||||
license = licenses.unfree;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook
|
||||
, libpcap, texinfo
|
||||
, iptables
|
||||
, gnupgSupport ? true, gnupg, gpgme # Increases dependencies!
|
||||
@@ -47,7 +47,7 @@ stdenv.mkDerivation rec {
|
||||
"wknopddir = $out/etc/fwknop"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description =
|
||||
"Single Packet Authorization (and Port Knocking) server/client";
|
||||
longDescription = ''
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -16,7 +16,7 @@ buildGoModule rec {
|
||||
|
||||
vendorSha256 = "17ag2wvaxv2dyx3yx3fvlf36ww4a44660pn4gvpbrwacsan9as5s";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tool to fetch known URLs";
|
||||
longDescription = ''
|
||||
getallurls (gau) fetches known URLs from various sources for any
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ coreutils, fetchFromGitHub, file, libcaca, makeWrapper, python, openssl, qrencode, stdenv, yubikey-manager }:
|
||||
{ coreutils, fetchFromGitHub, file, libcaca, makeWrapper, python, openssl, qrencode, lib, stdenv, yubikey-manager }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gen-oath-safe";
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||
wrapProgram $out/bin/gen-oath-safe \
|
||||
--prefix PATH : ${path}
|
||||
'';
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/mcepl/gen-oath-safe";
|
||||
description = "Script for generating HOTP/TOTP keys (and QR code)";
|
||||
platforms = platforms.unix;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, autoconf, automake, intltool, libtool, pkgconfig, encfs
|
||||
{ lib, stdenv, fetchurl, autoconf, automake, intltool, libtool, pkgconfig, encfs
|
||||
, glib , gnome3, gtk3, libgnome-keyring, vala, wrapGAppsHook, xorg, gobject-introspection
|
||||
}:
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "http://www.libertyzero.com/GEncfsM/";
|
||||
downloadPage = "https://launchpad.net/gencfsm/";
|
||||
description = "EncFS manager and mounter with GNOME3 integration";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchgit
|
||||
, rustPlatform
|
||||
, CoreFoundation
|
||||
@@ -19,7 +19,7 @@ rustPlatform.buildRustPackage rec {
|
||||
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ CoreFoundation libiconv Security ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A simple yet robust commandline random password generator";
|
||||
homepage = "https://sr.ht/~cyplo/genpass/";
|
||||
license = licenses.agpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchFromGitLab
|
||||
, fetchpatch
|
||||
, python3
|
||||
@@ -73,7 +73,7 @@ python3.pkgs.buildPythonApplication rec {
|
||||
# bunch of linting
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "GTK/GNOME application to use GnuPG for signing other peoples’ keys";
|
||||
homepage = "https://wiki.gnome.org/Apps/Keysign";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, libgpgerror, libassuan, libgcrypt, pkcs11helper,
|
||||
{ lib, stdenv, fetchurl, libgpgerror, libassuan, libgcrypt, pkcs11helper,
|
||||
pkgconfig, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
"--with-libgcrypt-prefix=${libgcrypt.dev}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A smart-card daemon to enable the use of PKCS#11 tokens with GnuPG";
|
||||
longDescription = ''
|
||||
gnupg-pkcs11 is a project to implement a BSD-licensed smart-card
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, readline, bzip2 }:
|
||||
{ lib, stdenv, fetchurl, readline, bzip2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnupg-1.4.23";
|
||||
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://gnupg.org";
|
||||
description = "Classic (1.4) release of the GNU Privacy Guard, a GPL OpenPGP implementation";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ fetchurl, fetchpatch, stdenv, pkgconfig, libgcrypt, libassuan, libksba
|
||||
{ fetchurl, fetchpatch, lib, stdenv, pkgconfig, libgcrypt, libassuan, libksba
|
||||
, libgpgerror, libiconv, npth, gettext, texinfo, buildPackages
|
||||
|
||||
# Each of the dependencies below are optional.
|
||||
@@ -76,7 +76,7 @@ stdenv.mkDerivation rec {
|
||||
ln -s -t $out/bin $out/libexec/*
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://gnupg.org";
|
||||
description = "Modern (2.1) release of the GNU Privacy Guard, a GPL OpenPGP implementation";
|
||||
license = licenses.gpl3Plus;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, makeWrapper
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
@@ -55,7 +55,7 @@ buildGoModule rec {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go";
|
||||
homepage = "https://www.gopass.pw/";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -19,7 +19,7 @@ buildGoModule rec {
|
||||
# tests require internet access and API keys
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast web spider written in Go";
|
||||
longDescription = ''
|
||||
GoSpider is a fast web crawler that parses sitemap.xml and robots.txt file.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, ncurses, gpgme }:
|
||||
{ lib, stdenv, fetchurl, ncurses, gpgme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gpgstats";
|
||||
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
|
||||
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (!stdenv.is64bit)
|
||||
"-D_FILE_OFFSET_BITS=64 -DLARGEFILE_SOURCE=1";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Calculates statistics on the keys in your gpg key-ring";
|
||||
longDescription = ''
|
||||
GPGstats calculates statistics on the keys in your key-ring.
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{ buildGoModule
|
||||
, docker
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -22,7 +22,7 @@ buildGoModule rec {
|
||||
# tests require a running Docker instance
|
||||
doCheck = false;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Vulnerability scanner for container images and filesystems";
|
||||
longDescription = ''
|
||||
As a vulnerability scanner is grype abale to scan the contents of a container
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, openssl }:
|
||||
{ lib, stdenv, fetchFromGitHub, openssl }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "hash_extender";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
cp hash_extender $out/bin
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tool to automate hash length extension attacks";
|
||||
homepage = "https://github.com/iagox86/hash_extender";
|
||||
license = licenses.bsd3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, openssl }:
|
||||
{ lib, stdenv, fetchurl, openssl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hashcash";
|
||||
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
|
||||
"DOC_INSTALL_PATH=${placeholder "out"}/share/doc/hashcash-$(version)"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Proof-of-work algorithm used as spam and denial-of-service counter measure";
|
||||
homepage = "http://hashcash.org";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hashcat-utils";
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Small utilities that are useful in advanced password cracking";
|
||||
homepage = "https://github.com/hashcat/hashcat-utils";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv
|
||||
{ lib, stdenv
|
||||
, fetchurl
|
||||
, makeWrapper
|
||||
, opencl-headers
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
wrapProgram $out/bin/hashcat --prefix LD_LIBRARY_PATH : ${ocl-icd}/lib
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast password cracker";
|
||||
homepage = "https://hashcat.net/hashcat/";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
let version = "4.4";
|
||||
in stdenv.mkDerivation {
|
||||
@@ -13,7 +13,7 @@ in stdenv.mkDerivation {
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A set of cross-platform tools to compute hashes";
|
||||
homepage = "https://github.com/jessek/hashdeep";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
installFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ZerBea/hcxdumptool";
|
||||
description = "Small tool to capture packets from wlan devices";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, curl, openssl, zlib }:
|
||||
{ lib, stdenv, fetchFromGitHub, curl, openssl, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "hcxtools";
|
||||
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
||||
"PREFIX=${placeholder "out"}"
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Tools for capturing wlan traffic and conversion to hashcat and John the Ripper formats";
|
||||
homepage = "https://github.com/ZerBea/hcxtools";
|
||||
license = licenses.mit;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "hologram-2018-03-19";
|
||||
@@ -17,7 +17,7 @@ buildGoPackage rec {
|
||||
sed -i 's|cacheTimeout != 3600|cacheTimeout != 0|' cmd/hologram-server/main.go
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/AdRoll/hologram/";
|
||||
description = "Easy, painless AWS credentials on developer laptops";
|
||||
maintainers = with maintainers; [ nand0p ];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ buildGoModule
|
||||
, fetchFromGitHub
|
||||
, stdenv
|
||||
, lib, stdenv
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
@@ -16,7 +16,7 @@ buildGoModule rec {
|
||||
|
||||
vendorSha256 = "0fg93vhwpx113fpw8qg4ram4bdh6a8x3a36pr1c962s4vhrabwy2";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast and multi-purpose HTTP toolkit";
|
||||
longDescription = ''
|
||||
httpx is a fast and multi-purpose HTTP toolkit allow to run multiple
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub , pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub , pkgconfig
|
||||
, pcsclite
|
||||
, autoreconfHook
|
||||
, libnfc
|
||||
@@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
configureFlags = [ "--prefix=$(out)" ];
|
||||
makeFlags = [ "DESTDIR=/" "usbdropdir=$(out)/pcsc/drivers" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "PC/SC IFD Handler based on libnfc";
|
||||
longDescription =
|
||||
'' libnfc Interface Plugin to be used in <code>services.pcscd.plugins</code>.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, jdk, jre, swt, makeWrapper, xorg, dpkg }:
|
||||
{ lib, stdenv, fetchurl, jdk, jre, swt, makeWrapper, xorg, dpkg }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ipscan";
|
||||
@@ -30,7 +30,7 @@ stdenv.mkDerivation rec {
|
||||
cp usr/share/pixmaps/ipscan.png $out/share/pixmaps/ipscan.png
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast and friendly network scanner";
|
||||
homepage = "https://angryip.org";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, gradle, jdk, makeWrapper, perl }:
|
||||
{ lib, stdenv, fetchFromGitHub, gradle, jdk, makeWrapper, perl }:
|
||||
|
||||
let
|
||||
pname = "jadx";
|
||||
@@ -90,7 +90,7 @@ in stdenv.mkDerivation {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Dex to Java decompiler";
|
||||
longDescription = ''
|
||||
Command line and GUI tools for produce Java source code from Android Dex
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, jre, jdk, gradle_5, makeDesktopItem, copyDesktopItems, perl, writeText, runtimeShell }:
|
||||
{ lib, stdenv, fetchFromGitHub, jre, jdk, gradle_5, makeDesktopItem, copyDesktopItems, perl, writeText, runtimeShell }:
|
||||
|
||||
let
|
||||
pname = "jd-gui";
|
||||
@@ -99,7 +99,7 @@ in stdenv.mkDerivation rec {
|
||||
|
||||
desktopItems = [ desktopItem ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast Java Decompiler with powerful GUI";
|
||||
homepage = "https://java-decompiler.github.io/";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, rustPlatform, Security, fetchpatch }:
|
||||
{ lib, stdenv, fetchFromGitHub, rustPlatform, Security, fetchpatch }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "jwt-cli";
|
||||
@@ -18,7 +18,7 @@ rustPlatform.buildRustPackage rec {
|
||||
doInstallCheck = true;
|
||||
installCheckPhase = "$out/bin/jwt --version";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Super fast CLI tool to decode and encode JWTs";
|
||||
homepage = "https://github.com/mike-engel/jwt-cli";
|
||||
license = with licenses; [ mit ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, rustPlatform, fetchFromGitHub, installShellFiles, python3, libxcb, AppKit }:
|
||||
{ lib, stdenv, rustPlatform, fetchFromGitHub, installShellFiles, python3, libxcb, AppKit }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "kbs2";
|
||||
@@ -36,7 +36,7 @@ rustPlatform.buildRustPackage rec {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A secret manager backed by age";
|
||||
homepage = "https://github.com/woodruffw/kbs2";
|
||||
changelog = "https://github.com/woodruffw/kbs2/blob/v${version}/CHANGELOG.md";
|
||||
|
||||
@@ -31,7 +31,7 @@ buildGoPackage rec {
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ AVFoundation AudioToolbox ImageIO CoreMedia Foundation CoreGraphics MediaToolbox ];
|
||||
buildFlags = [ "-tags production" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.keybase.io/";
|
||||
description = "The Keybase official command-line utility and service";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
|
||||
@@ -105,7 +105,7 @@ stdenv.mkDerivation rec {
|
||||
--replace run_keybase $out/bin/keybase-gui
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://www.keybase.io/";
|
||||
description = "The Keybase official GUI";
|
||||
platforms = [ "x86_64-linux" ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, buildGoPackage, fetchFromGitHub, keybase }:
|
||||
{ lib, stdenv, buildGoPackage, fetchFromGitHub, keybase }:
|
||||
|
||||
buildGoPackage {
|
||||
pname = "kbfs";
|
||||
@@ -12,7 +12,7 @@ buildGoPackage {
|
||||
|
||||
buildFlags = [ "-tags production" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://keybase.io/docs/kbfs";
|
||||
description = "The Keybase filesystem";
|
||||
platforms = platforms.unix;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, python2Packages, hping }:
|
||||
{ lib, stdenv, fetchFromGitHub, python2Packages, hping }:
|
||||
let
|
||||
rev = "bf14bbff";
|
||||
in python2Packages.buildPythonApplication rec {
|
||||
@@ -23,7 +23,7 @@ in python2Packages.buildPythonApplication rec {
|
||||
substituteInPlace knockknock.py --replace 'existsInPath("hping3")' '"${hping}/bin/hping3"'
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Simple, secure port knocking daemon and client written in Python";
|
||||
homepage = "http://www.thoughtcrime.org/software/knockknock/";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, makeWrapper, perl, perlPackages }:
|
||||
{ lib, stdenv, fetchurl, makeWrapper, perl, perlPackages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "3.6";
|
||||
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "KeePass Command Line Interface";
|
||||
longDescription = ''
|
||||
KeePass Command Line Interface (CLI) / interactive shell.
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, python3, fetchFromGitHub }:
|
||||
{ lib, stdenv, python3, fetchFromGitHub }:
|
||||
|
||||
let
|
||||
inherit (python3.pkgs) buildPythonApplication pytest mock pexpect;
|
||||
@@ -30,7 +30,7 @@ buildPythonApplication rec {
|
||||
pytest tests
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Stateless password manager";
|
||||
homepage = "https://lesspass.com";
|
||||
maintainers = with maintainers; [ jasoncarr ];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, pkgconfig, pcsclite , libusb-compat-0_1 }:
|
||||
{ lib, stdenv, fetchurl, pkgconfig, pcsclite , libusb-compat-0_1 }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
version = "1.7.11";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation {
|
||||
makeFlagsArray=(usbdropdir="$out/pcsc/drivers");
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "ACR38U smartcard reader driver for pcsclite";
|
||||
longDescription = ''
|
||||
A PC/SC IFD handler implementation for the ACS ACR38U
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig
|
||||
, doxygen, perl, valgrind
|
||||
, curl, geoip, libxml2, lmdb, lua, pcre, yajl }:
|
||||
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = ''
|
||||
ModSecurity v3 library component.
|
||||
'';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, autoconf, automake, which, procps, kbd }:
|
||||
{ lib, stdenv, fetchFromGitHub, autoconf, automake, which, procps, kbd }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "logkeys";
|
||||
@@ -21,7 +21,7 @@ stdenv.mkDerivation {
|
||||
|
||||
preConfigure = "./autogen.sh";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "A GNU/Linux keylogger that works!";
|
||||
license = licenses.gpl3;
|
||||
homepage = "https://github.com/kernc/logkeys";
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, makeWrapper, fetchFromGitHub, gawk, installShellFiles }:
|
||||
{ lib, stdenv, makeWrapper, fetchFromGitHub, gawk, installShellFiles }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "lynis";
|
||||
@@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
|
||||
extras/bash_completion.d/lynis
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Security auditing tool for Linux, macOS, and UNIX-based systems";
|
||||
homepage = "https://cisofy.com/lynis/";
|
||||
license = licenses.gpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, libpcap }:
|
||||
{ lib, stdenv, fetchFromGitHub, makeWrapper, libpcap }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "masscan";
|
||||
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
|
||||
wrapProgram $out/bin/masscan --prefix LD_LIBRARY_PATH : "${libpcap}/lib"
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Fast scan of the Internet";
|
||||
homepage = "https://github.com/robertdavidgraham/masscan";
|
||||
license = licenses.agpl3;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, pkg-config, freerdp, openssl, libssh2 }:
|
||||
{ lib, stdenv, fetchFromGitHub, pkg-config, freerdp, openssl, libssh2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "medusa-unstable";
|
||||
@@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ freerdp openssl libssh2 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/jmk-foofus/medusa";
|
||||
description = "A speedy, parallel, and modular, login brute-forcer";
|
||||
license = licenses.gpl2;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, makeWrapper, ruby, bundlerEnv }:
|
||||
{ lib, stdenv, fetchFromGitHub, makeWrapper, ruby, bundlerEnv }:
|
||||
|
||||
let
|
||||
env = bundlerEnv {
|
||||
@@ -39,7 +39,7 @@ in stdenv.mkDerivation rec {
|
||||
# run with: nix-shell maintainers/scripts/update.nix --argstr path metasploit
|
||||
passthru.updateScript = ./update.sh;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Metasploit Framework - a collection of exploits";
|
||||
homepage = "https://github.com/rapid7/metasploit-framework/wiki";
|
||||
platforms = platforms.unix;
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user