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 {
|
||||
inherit system;
|
||||
config.allowUnfree = true;
|
||||
overlays = [
|
||||
(self: super: {
|
||||
openssl = super.openssl_1_1; # TODO: workaround for openssl critical vuln
|
||||
})
|
||||
];
|
||||
};
|
||||
inherit (pkgs) lib;
|
||||
nur = import ./default.nix {inherit pkgs;};
|
||||
|
|
Reference in a new issue