summaryrefslogtreecommitdiffstats
path: root/default.nix
blob: d91de623d88c6a03c62eb23c38cae88a1c02f4bc (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
{ pkgs ? (import <nixpkgs> {}) }:

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

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

pkgs.stdenv.mkDerivation rec {
    name = "imag";
    src = /var/empty;
    version = "0.0.0";

    buildInputs = env ++ dependencies;

}