add workaround for openssl critical vuln
This commit is contained in:
parent
a6a8c57375
commit
4b74c48cad
1 changed files with 5 additions and 0 deletions
|
@ -17,6 +17,11 @@
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
|
overlays = [
|
||||||
|
(self: super: {
|
||||||
|
openssl = super.openssl_1_1; # TODO: workaround for openssl critical vuln
|
||||||
|
})
|
||||||
|
];
|
||||||
};
|
};
|
||||||
inherit (pkgs) lib;
|
inherit (pkgs) lib;
|
||||||
nur = import ./default.nix {inherit pkgs;};
|
nur = import ./default.nix {inherit pkgs;};
|
||||||
|
|
Reference in a new issue