We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94b9a5e commit 8cb20b5Copy full SHA for 8cb20b5
flake.nix
@@ -0,0 +1,35 @@
1
+{
2
+ description = "Dev shell for op-succinct (tests via just)";
3
+
4
+ inputs = {
5
+ nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6
+ flake-utils.url = "github:numtide/flake-utils";
7
+ };
8
9
+ outputs = { self, nixpkgs, flake-utils, ... }:
10
+ flake-utils.lib.eachDefaultSystem (system:
11
+ let
12
+ pkgs = import nixpkgs {
13
+ inherit system;
14
15
+ in {
16
+ devShells.default = pkgs.mkShell {
17
+ buildInputs = with pkgs; [
18
+ rustc
19
+ cargo
20
+ rustfmt
21
+ clippy
22
+ just
23
+ pkg-config
24
+ openssl
25
+ protobuf
26
+ clang
27
+ cmake
28
+ git
29
+ jq
30
+ zlib
31
+ curl
32
+ ];
33
34
+ });
35
+}
0 commit comments