From c7b50ae799bdb33bb0697fd6df364091d24eec12 Mon Sep 17 00:00:00 2001 From: joachimschmidt557 Date: Mon, 14 Mar 2022 00:39:05 +0100 Subject: [PATCH] Add nix/spfe --- flake.nix | 1 + nix/spfe.nix | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 nix/spfe.nix diff --git a/flake.nix b/flake.nix index a6d042a..7bee328 100644 --- a/flake.nix +++ b/flake.nix @@ -25,6 +25,7 @@ devShells = { aby = import ./nix/aby.nix { pkgs = pkgs; }; empty = import ./nix/empty.nix { pkgs = pkgs; }; + spfe = import ./nix/spfe.nix { pkgs = pkgs; }; zig = import ./nix/zig.nix { pkgs = pkgs; }; }; }) // { diff --git a/nix/spfe.nix b/nix/spfe.nix new file mode 100644 index 0000000..d996af6 --- /dev/null +++ b/nix/spfe.nix @@ -0,0 +1,15 @@ +{ pkgs }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + cmake + gmp + boost166 + openssl + doxygen + ninja + llvmPackages_13.clang + perl534Packages.LWP + bison + ]; +}