diff options
author | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-08 10:45:09 +0200 |
---|---|---|
committer | Gregor Kleen <gkleen@yggdrasil.li> | 2024-08-08 10:45:09 +0200 |
commit | 63adb41f1a060c21a68143eb9e86c2790ef66f36 (patch) | |
tree | 3902b85e7659fd396ded1d2e42ea318153d08a13 /overlays | |
parent | 73b08cbd76d4471c9a6fddd05265d7d7fc4c45ff (diff) | |
download | nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar.gz nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar.bz2 nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.tar.xz nixos-63adb41f1a060c21a68143eb9e86c2790ef66f36.zip |
...
Diffstat (limited to 'overlays')
-rw-r--r-- | overlays/postfix-mta-sts-resolver/default.nix | 1 | ||||
-rw-r--r-- | overlays/preserve-dscp/default.nix | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/overlays/postfix-mta-sts-resolver/default.nix b/overlays/postfix-mta-sts-resolver/default.nix index 49fbb7c9..d930cefb 100644 --- a/overlays/postfix-mta-sts-resolver/default.nix +++ b/overlays/postfix-mta-sts-resolver/default.nix | |||
@@ -3,6 +3,7 @@ | |||
3 | postfix-mta-sts-resolver = | 3 | postfix-mta-sts-resolver = |
4 | with prev.poetry2nix; | 4 | with prev.poetry2nix; |
5 | mkPoetryApplication { | 5 | mkPoetryApplication { |
6 | python = prev.python311; | ||
6 | inherit (sources.postfix-mta-sts-resolver) pname version; | 7 | inherit (sources.postfix-mta-sts-resolver) pname version; |
7 | projectDir = cleanPythonSources { | 8 | projectDir = cleanPythonSources { |
8 | src = prev.runCommand "sources" {} '' | 9 | src = prev.runCommand "sources" {} '' |
diff --git a/overlays/preserve-dscp/default.nix b/overlays/preserve-dscp/default.nix index 73721083..a1064591 100644 --- a/overlays/preserve-dscp/default.nix +++ b/overlays/preserve-dscp/default.nix | |||
@@ -10,7 +10,8 @@ | |||
10 | buildFlags = [ "preserve-dscp" ]; | 10 | buildFlags = [ "preserve-dscp" ]; |
11 | 11 | ||
12 | CPATH = prev.lib.makeSearchPathOutput "dev" "include" (buildInputs ++ nativeBuildInputs); | 12 | CPATH = prev.lib.makeSearchPathOutput "dev" "include" (buildInputs ++ nativeBuildInputs); |
13 | BPF_CFLAGS = "-Wno-unused-command-line-argument -fno-stack-protector"; | 13 | BPF_CFLAGS = "-Wno-unused-command-line-argument"; |
14 | hardeningDisable = [ "stackprotector" "zerocallusedregs" ]; | ||
14 | 15 | ||
15 | outputs = [ "out" "lib" ]; | 16 | outputs = [ "out" "lib" ]; |
16 | 17 | ||