imag/default.nix

30 lines
351 B
Nix
Raw Normal View History

{ pkgs ? (import <nixpkgs> {}) }:
2015-10-19 15:30:35 +00:00
let
env = with pkgs.rustStable; [
2015-10-19 15:30:35 +00:00
rustc
cargo
];
dependencies = with pkgs; [
cmake
2017-01-25 07:55:11 +00:00
curl
gcc
libpsl
openssl
pkgconfig
2016-10-11 18:13:56 +00:00
which
2017-01-25 07:55:11 +00:00
zlib
];
2015-10-19 15:30:35 +00:00
in
pkgs.stdenv.mkDerivation rec {
2015-11-02 17:51:18 +00:00
name = "imag";
2015-10-19 15:30:35 +00:00
src = ./.;
version = "0.0.0";
2016-10-15 13:46:27 +00:00
buildInputs = env ++ dependencies;
2015-10-19 15:30:35 +00:00
}