imag/default.nix

32 lines
394 B
Nix

{ 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;
}