imag/default.nix
Matthias Beyer 2b2ef72b69 Remove libimagruby
To quick-fix the master branch.
2017-05-02 17:14:48 +02:00

30 lines
363 B
Nix

{ pkgs ? (import <nixpkgs> {}) }:
let
env = with pkgs.rustStable; [
rustc
cargo
];
dependencies = with pkgs; [
bundler
cmake
curl
gcc
libpsl
openssl
pkgconfig
which
zlib
];
in
pkgs.stdenv.mkDerivation rec {
name = "imag";
src = ./.;
version = "0.0.0";
buildInputs = env ++ dependencies;
}