Pepper in allowing old openssl

This commit is contained in:
Graham Christensen 2020-05-19 23:19:00 -04:00
parent d6fa9f3806
commit 65db4d0da0
No known key found for this signature in database
GPG key ID: FE918C3A98C1030F
3 changed files with 17 additions and 1 deletions

View file

@ -1,4 +1,10 @@
{ pkgs ? import ./nix { overlays = [ (import ./nix/overlay.nix) ]; } }:
{ pkgs ? import ./nix {
config.permittedInsecurePackages = [
"openssl-1.0.2u"
];
overlays = [ (import ./nix/overlay.nix) ];
}
}:
let
ofborgCrates = pkgs.callPackage ./Cargo.nix {

View file

@ -3,6 +3,9 @@
}:
let
pkgs = import nixpkgs {
config.permittedInsecurePackages = [
"openssl-1.0.2u"
];
overlays = [ (import ./nix/overlay.nix) ];
};
inherit (pkgs) lib;
@ -18,6 +21,9 @@ let
collector // {
"${system}" = import ./. {
pkgs = import nixpkgs {
config.permittedInsecurePackages = [
"openssl-1.0.2u"
];
inherit system;
overlays = [
(import ./nix/overlay.nix)

View file

@ -1,4 +1,8 @@
{ pkgs ? import ./nix {
config.permittedInsecurePackages = [
"openssl-1.0.2u"
];
overlays = [
(import ./nix/overlay.nix)
(import (builtins.fetchTarball https://github.com/mozilla/nixpkgs-mozilla/archive/master.tar.gz))