minor testing default file for local reproduction

main
Claudius Holeksa 2023-02-05 00:09:45 +01:00
parent d1fa27b32a
commit b47bff0f3f
1 changed files with 10 additions and 0 deletions

10
default.nix Normal file
View File

@ -0,0 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.callPackage ./derivation.nix {
extraCmakeFlags = [
"-DGINKGO_CUDA=OFF"
"-DGINKGO_BUILD_BENCHMARKS=OFF"
"-DGINKGO_BUILD_EXAMPLES=OFF"
"-DGINKGO_BUILD_HWLOC=OFF"
];
}