Add nix/spfe
This commit is contained in:
parent
85b49e79e5
commit
c7b50ae799
2 changed files with 16 additions and 0 deletions
|
|
@ -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; };
|
||||
};
|
||||
}) // {
|
||||
|
|
|
|||
15
nix/spfe.nix
Normal file
15
nix/spfe.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ pkgs }:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
cmake
|
||||
gmp
|
||||
boost166
|
||||
openssl
|
||||
doxygen
|
||||
ninja
|
||||
llvmPackages_13.clang
|
||||
perl534Packages.LWP
|
||||
bison
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue