aboutsummaryrefslogtreecommitdiff
path: root/contrib/nixos/shell.nix
blob: ef20be61e60f32f057fe67eb388001f8b7655c55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
  nativeBuildInputs = [
    pkg-config
    autoreconfHook
    openssl
    db5
    util-linux
    boost
    zlib
    libevent
    miniupnpc
    qt4
    protobuf
    qrencode
  ];
}