remove openssl_1_0_2

With rust-amqp gone this isn't referenced anymore.
This commit is contained in:
Daiderd Jordan 2020-05-24 17:31:20 +02:00
parent 3810d18a52
commit 9aecc91a09
No known key found for this signature in database
GPG key ID: D02435D05B810C96
4 changed files with 2 additions and 22 deletions

View file

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

View file

@ -9,13 +9,6 @@
buildInputs = with self.darwin.apple_sdk.frameworks;
super.lib.optional super.stdenv.isDarwin Security;
};
openssl-sys = attrs: {
buildInputs = [ self.openssl_1_0_2 ];
nativeBuildInputs = [ self.pkgconfig ];
};
openssl = attrs: {
DEP_OPENSSL_VERSION = "102";
};
};
})

View file

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

View file

@ -1,8 +1,4 @@
{ 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))
@ -45,7 +41,7 @@ let
latest.rustChannels.stable.rust
git
pkgconfig
openssl_1_0_2.dev
openssl
]
++ stdenv.lib.optional stdenv.isDarwin pkgs.darwin.Security;
@ -83,7 +79,7 @@ let
nix-prefetch-git
latest.rustChannels.stable.rust
#rustfmt
openssl_1_0_2.dev
openssl
pkgconfig
git
]