forked from the-distro/ofborg
remove openssl_1_0_2
With rust-amqp gone this isn't referenced anymore.
This commit is contained in:
parent
3810d18a52
commit
9aecc91a09
|
@ -1,7 +1,4 @@
|
|||
{ pkgs ? import ./nix {
|
||||
config.permittedInsecurePackages = [
|
||||
"openssl-1.0.2u"
|
||||
];
|
||||
overlays = [ (import ./nix/overlay.nix) ];
|
||||
}
|
||||
, ofborgCrates ? import ./Cargo.nix {
|
||||
|
|
|
@ -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";
|
||||
};
|
||||
};
|
||||
})
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue