Browse Source

shell.nix

master
watkinsr 2 years ago
parent
commit
e2fac81025
  1. 21
      shell.nix

21
shell.nix

@ -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…
Cancel
Save