blob: 3d82745cb2f4069fd5bd1c8a7c418fa19e59ee89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "env";
env = buildEnv { name = name; paths = buildInputs; };
buildInputs = [
gcc
cmake
boost
git
gtest
];
}
|