nixos-option: add devShell

This commit is contained in:
Jörg Thalheim
2024-11-13 23:10:25 +01:00
parent 00c3a3defe
commit 7e9e33e79c
2 changed files with 8 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
use nix
+7
View File
@@ -0,0 +1,7 @@
with import ../../../.. { };
nixos-option.overrideAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs ++ [
# hiprio so that it has a higher priority than the default unwrapped clang tools from clang if our stdenv is based on clang
(lib.hiPrio pkgs.buildPackages.clang-tools)
];
})