1 changed files with 21 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
with import <nixpkgs> {}; |
|||
|
|||
stdenv.mkDerivation { |
|||
name = "cpp-env"; |
|||
nativeBuildInputs = [ |
|||
gcc10 |
|||
curl |
|||
cmake |
|||
ccache |
|||
rsync |
|||
unzip |
|||
|
|||
# Example Build-time Additional Dependencies |
|||
pkgconfig |
|||
]; |
|||
buildInputs = [ |
|||
# Example Run-time Additional Dependencies |
|||
clang-tools |
|||
]; |
|||
hardeningDisable = [ "format" "fortify" ]; |
|||
} |
Loading…
Reference in new issue