zima 0.1.0-alpha.2

An attempt to create a modern package for the needs of applied statistics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs, ... }: {
  languages.rust = {
    channel = "nightly";
    components = [ "rustc" "cargo" "rust-src" "clippy" ];
    enable = true;
  };

 packages = with pkgs; [
    fontconfig
    freetype
    pkg-config
    libpng
  ];

  env.CARGO_TARGET_DIR = "./target";
}