nothing/default.nix

14 lines
348 B
Nix
Raw Permalink Normal View History

2017-11-29 11:35:20 -08:00
with import <nixpkgs> {}; {
nothingEnv = gcc8Stdenv.mkDerivation {
2017-11-29 11:35:20 -08:00
name = "nothing-env";
buildInputs = [ stdenv
gcc
2019-05-12 11:54:01 -07:00
gdb
2017-11-29 11:35:20 -08:00
SDL2
pkgconfig
cmake
2017-12-17 11:00:58 -08:00
valgrind
2017-11-29 11:35:20 -08:00
];
};
}