diff options
| author | Zach Latta <[email protected]> | 2021-08-03 14:46:51 -0400 |
|---|---|---|
| committer | Zach Latta <[email protected]> | 2021-08-03 14:46:51 -0400 |
| commit | 5c6017aad4b14e53fdc5cc6b210b04059cba39f5 (patch) | |
| tree | 56f264b65f2ab0250da4d30dd9c84c8d8e2dce06 /contrib | |
| parent | Add build and setup instructions for NixOS (diff) | |
| download | archived-discoin-5c6017aad4b14e53fdc5cc6b210b04059cba39f5.tar.xz archived-discoin-5c6017aad4b14e53fdc5cc6b210b04059cba39f5.zip | |
Move shell.nix contents into separate file
Diffstat (limited to 'contrib')
| -rw-r--r-- | contrib/nixos/shell.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/contrib/nixos/shell.nix b/contrib/nixos/shell.nix new file mode 100644 index 000000000..ef20be61e --- /dev/null +++ b/contrib/nixos/shell.nix @@ -0,0 +1,18 @@ +{ pkgs ? import <nixpkgs> { } }: +with pkgs; +mkShell { + nativeBuildInputs = [ + pkg-config + autoreconfHook + openssl + db5 + util-linux + boost + zlib + libevent + miniupnpc + qt4 + protobuf + qrencode + ]; +} |