Clean up nix dev shells

This commit is contained in:
joachimschmidt557 2023-01-19 18:56:19 +01:00
parent c544c44fce
commit d37b473dcc
No known key found for this signature in database
GPG key ID: E0B575BE2884ACC5
5 changed files with 10 additions and 57 deletions

7
nix/basic-cmake.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs }:
pkgs.mkShell {
buildInputs = with pkgs; [
cmake
];
}