summaryrefslogtreecommitdiffstats
path: root/ci.nix
blob: 3b9e0188dfe664647dd1a42909e5254ca29775bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ pkgs ? (import <nixpkgs> {}) }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    rustc
    cargo

    cmake
    curl
    gcc
    libpsl
    openssl
    pkgconfig
    which
    zlib
    dbus
    libtool
  ];
  LIBCLANG_PATH   = "${pkgs.llvmPackages.libclang}/lib";
}