summaryrefslogtreecommitdiffstats
path: root/shell.nix
blob: d6324a8a92aad25e08aaa6fdb63e8cf840dd00cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ pkgs ? (import <nixpkgs> {}) }:

let
  env = with pkgs.rustChannels.stable; [
    rust
    cargo
  ];

  dependencies = with pkgs; [
    cmake
    curl
    gcc
    libpsl
    openssl
    pkgconfig
    which
    zlib
    dbus
    libtool
  ];

  gtk = with pkgs; [
    glib
    pango
    gdk-pixbuf
    atk
    gtk3

    libsoup
    webkitgtk
  ];
in

pkgs.mkShell rec {
    buildInputs     = env ++ dependencies ++ gtk;
    LIBCLANG_PATH   = "${pkgs.llvmPackages.libclang}/lib";
}