26 lines
472 B
Nix
26 lines
472 B
Nix
{ pkgs ? (import <nixpkgs> {}) }:
|
|
let
|
|
date = "2020-06-01";
|
|
in
|
|
let
|
|
rust-channel = pkgs.callPackage ./rust-channel.nix { };
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [
|
|
(rust-channel.rust.override {
|
|
targets = ["wasm32-unknown-unknown"];
|
|
})
|
|
rust-channel.rust-docs
|
|
pkgs.rustfmt
|
|
pkgs.cargo-web
|
|
pkgs.openssl
|
|
pkgs.pkg-config
|
|
pkgs.wasm-pack
|
|
pkgs.cargo-generate
|
|
pkgs.sqlitebrowser
|
|
pkgs.sqlite
|
|
pkgs.diesel-cli
|
|
pkgs.zlib
|
|
];
|
|
}
|