Skip to content

Commit

Permalink
fix(flake): added missing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cliarena committed Feb 10, 2024
1 parent ab61574 commit 7ef0e0c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
12 changes: 12 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,18 @@
rev = "v3.7.1";
hash = "sha256-HnhXBvIjo1JXhp+hUQvjs83t5IBVbNN6o3ZGhB4WESQ=";
};
cpptrace_src = pkgs.fetchFromGitHub {
owner = "jeremy-rifkin";
repo = "cpptrace";
rev = "448c325";
hash = "sha256-JGwRhmsd0xiHkK0JW0AUvWAnJA9UztK2wQ+c5aq2y6E=";
};
libdwarf_src = pkgs.fetchFromGitHub {
owner = "jeremy-rifkin";
repo = "libdwarf-lite";
rev = "5c0cb25";
hash = "sha256-so/y6GnhwYZPFCeoKih+sPgndnuHWHE1h9mWXnccXxM=";
};
simplewebserver_src = pkgs.fetchFromGitLab {
owner = "eidheim";
repo = "Simple-Web-Server";
Expand Down
2 changes: 2 additions & 0 deletions nix/wolf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ pkgs.stdenv.mkDerivation {
"-DFETCHCONTENT_SOURCE_DIR_SIMPLEWEBSERVER=${deps.simplewebserver_src}"
"-DFETCHCONTENT_SOURCE_DIR_TOML=${deps.toml_src}"
"-DFETCHCONTENT_SOURCE_DIR_ENET=${deps.enet_src}"
"-DFETCHCONTENT_SOURCE_DIR_CPPTRACE=${deps.cpptrace_src}"
"-DFETCHCONTENT_SOURCE_DIR_LIBDWARF=${deps.libdwarf_src}"
"-DCMAKE_BUILD_TYPE=Release"
"-DCMAKE_CXX_STANDARD=17"
"-DCMAKE_CXX_EXTENSIONS=OFF"
Expand Down

0 comments on commit 7ef0e0c

Please sign in to comment.