nix-icon-charm/shell.nix

18 lines
284 B
Nix
Raw Normal View History

2023-02-08 11:02:44 +01:00
with import <nixpkgs> {};
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
name = "icon-charm";
nativeBuildInputs = [
2023-02-15 17:11:30 +01:00
clang-tools_15
2023-02-08 11:02:44 +01:00
gfortran12
cmake
2023-02-24 15:45:53 +01:00
ninja
2023-02-08 11:02:44 +01:00
gdb
valgrind
python39
python39Packages.jinja2
2023-02-22 11:41:05 +01:00
gtest
2023-02-08 11:02:44 +01:00
];
}