Merge staging-next into staging

This commit is contained in:
github-actions[bot]
2021-04-03 18:18:54 +00:00
committed by GitHub
90 changed files with 1869 additions and 3429 deletions
+2 -2
View File
@@ -2,13 +2,13 @@
buildGoModule rec {
pname = "doppler";
version = "3.23.1";
version = "3.23.2";
src = fetchFromGitHub {
owner = "dopplerhq";
repo = "cli";
rev = version;
sha256 = "sha256-6sTsASfHIFH1V3Q20R2y8AiOVZ4NR4GGRCKRVr25kkc=";
sha256 = "sha256-qdBq1vjvvb55gyL4XuPDrPK58YLSSH5kLp1oP84vJsU=";
};
vendorSha256 = "sha256-UaR/xYGMI+C9aID85aPSfVzmTWXj4KcjfOJ6TTJ8KoY=";
+2 -2
View File
@@ -22,14 +22,14 @@
buildPythonApplication rec {
pname = "expliot";
version = "0.9.6";
version = "0.9.7";
disabled = pythonOlder "3.7";
src = fetchFromGitLab {
owner = "expliot_framework";
repo = pname;
rev = version;
sha256 = "1wn8fyrvis0gw80zzmpivinw6mz5n33inhv39iallsl3is8xpgpa";
sha256 = "sha256-k43PvH9BXcvxe7O5iCGzLuxv/WkB9YelH/d/1S7BpU0=";
};
propagatedBuildInputs = [
@@ -1,4 +1,4 @@
{ coreutils, fetchFromGitHub, file, libcaca, makeWrapper, python, openssl, qrencode, lib, stdenv, yubikey-manager }:
{ coreutils, fetchFromGitHub, file, libcaca, makeWrapper, python3, openssl, qrencode, lib, stdenv, yubikey-manager }:
stdenv.mkDerivation rec {
pname = "gen-oath-safe";
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
file
libcaca.bin
openssl.bin
python
python3
qrencode
yubikey-manager
];
+3 -3
View File
@@ -1,7 +1,7 @@
{ lib, stdenv, fetchFromGitHub, pythonPackages, unbound, libreswan }:
{ lib, stdenv, fetchFromGitHub, python2Packages, unbound, libreswan }:
let
inherit (pythonPackages) python;
pythonPackages = python2Packages;
in stdenv.mkDerivation rec {
pname = "hash-slinger";
version = "2.7";
@@ -31,7 +31,7 @@ in stdenv.mkDerivation rec {
'';
installPhase = ''
mkdir -p $out/bin $out/man $out/${python.sitePackages}/
mkdir -p $out/bin $out/man $out/${pythonPackages.python.sitePackages}/
make install
wrapPythonPrograms
'';