Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2020-08-17 14:54:39 +02:00
531 changed files with 2778 additions and 6274 deletions
-1
View File
@@ -16,7 +16,6 @@ buildGoPackage rec {
meta = with stdenv.lib; {
homepage = "https://rsc.io/2fa";
description = "Two-factor authentication on the command line";
platforms = platforms.all;
maintainers = with maintainers; [ rvolosatovs ];
license = licenses.bsd3;
};
-1
View File
@@ -25,7 +25,6 @@ buildGoPackage rec {
description = "aws-vault like tool for Okta authentication";
license = licenses.mit;
maintainers = [maintainers.imalsogreg];
platforms = platforms.all;
homepage = "https://github.com/segmentio/aws-okta";
downloadPage = "https://github.com/segmentio/aws-okta";
};
@@ -34,6 +34,5 @@ buildGoModule rec {
homepage = "https://www.bettercap.org/";
license = with licenses; gpl3;
maintainers = with maintainers; [ y0no ];
platforms = platforms.all;
};
}
@@ -40,6 +40,5 @@ in rustPlatform.buildRustPackage rec {
homepage = "https://github.com/dani-garcia/bitwarden_rs";
license = licenses.gpl3;
maintainers = with maintainers; [ msteen ];
platforms = platforms.all;
};
}
@@ -50,7 +50,6 @@ buildGoModule rec {
description = "Browserpass native client app";
homepage = "https://github.com/browserpass/browserpass-native";
license = licenses.isc;
platforms = platforms.all;
maintainers = with maintainers; [ rvolosatovs infinisil ];
};
}
@@ -16,7 +16,6 @@ buildGoPackage rec {
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Tools to bootstrap CAs, certificate requests, and signed certificates";
platforms = platforms.all;
license = licenses.asl20;
maintainers = with maintainers; [ volth ];
};
-1
View File
@@ -19,7 +19,6 @@ rustPlatform.buildRustPackage rec {
description = "A simple yet robust commandline random password generator.";
homepage = "https://github.com/cyplo/genpass";
license = licenses.agpl3;
platforms = platforms.all;
maintainers = with maintainers; [ cyplo ];
};
}
@@ -25,6 +25,6 @@ stdenv.mkDerivation {
description = "Tool to automate hash length extension attacks";
homepage = "https://github.com/iagox86/hash_extender";
license = licenses.bsd3;
maintainers = with maintainers; [ geistesk ];
maintainers = with maintainers; [ oxzi ];
};
}
-1
View File
@@ -23,7 +23,6 @@ buildGoPackage rec {
homepage = "https://github.com/AdRoll/hologram/";
description = "Easy, painless AWS credentials on developer laptops.";
maintainers = with maintainers; [ nand0p ];
platforms = platforms.all;
license = licenses.asl20;
};
}
-1
View File
@@ -20,6 +20,5 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/mike-engel/jwt-cli";
license = with licenses; [ mit ];
maintainers = with maintainers; [ rycee ];
platforms = platforms.all;
};
}
-1
View File
@@ -89,7 +89,6 @@ rustPlatform.buildRustPackage rec {
homepage = "https://sequoia-pgp.org/";
license = licenses.gpl3;
maintainers = with maintainers; [ minijackson doronbehar ];
platforms = platforms.all;
broken = stdenv.targetPlatform.isDarwin;
};
}
+16 -5
View File
@@ -1,18 +1,18 @@
{ stdenv, fetchurl, botan, libobjc, Security }:
{ stdenv, fetchurl, botan2, libobjc, Security }:
stdenv.mkDerivation rec {
pname = "softhsm";
version = "2.5.0";
version = "2.6.1";
src = fetchurl {
url = "https://dist.opendnssec.org/source/${pname}-${version}.tar.gz";
sha256 = "1cijq78jr3mzg7jj11r0krawijp99p253f4qdqr94n728p7mdalj";
hash = "sha256:1wkmyi6n3z2pak1cj5yk6v6bv9w0m24skycya48iikab0mrr8931";
};
configureFlags = [
"--with-crypto-backend=botan"
"--with-botan=${botan}"
"--with-botan=${botan2}"
"--sysconfdir=$out/etc"
"--localstatedir=$out/var"
];
@@ -20,13 +20,24 @@ stdenv.mkDerivation rec {
propagatedBuildInputs =
stdenv.lib.optionals stdenv.isDarwin [ libobjc Security ];
buildInputs = [ botan ];
buildInputs = [ botan2 ];
postInstall = "rm -rf $out/var";
meta = with stdenv.lib; {
homepage = "https://www.opendnssec.org/softhsm";
description = "Cryptographic store accessible through a PKCS #11 interface";
longDescription = "
SoftHSM provides a software implementation of a generic
cryptographic device with a PKCS#11 interface, which is of
course especially useful in environments where a dedicated hardware
implementation of such a device - for instance a Hardware
Security Module (HSM) or smartcard - is not available.
SoftHSM follows the OASIS PKCS#11 standard, meaning it should be
able to work with many cryptographic products. SoftHSM is a
programme of The Commons Conservancy.
";
license = licenses.bsd2;
maintainers = [ maintainers.leenaars ];
platforms = platforms.unix;