This repository has been archived on 2021-02-13. You can view files and clone it, but cannot push or open issues/pull-requests.
zettel.deprecated/shell.nix

21 lines
310 B
Nix
Raw Permalink Normal View History

2020-05-27 20:50:04 +00:00
{ ... }:
let
sources = import ./nix/sources.nix;
nixpkgs = import sources.nixpkgs { };
niv = import sources.niv { };
in with nixpkgs;
stdenv.mkDerivation {
name = "zettel";
2020-05-29 17:00:13 +00:00
buildInputs = [
niv.niv
git
# rust
cargo
rustc
rustfmt
cargo-watch
rustPackages.clippy
2020-05-29 17:00:13 +00:00
];
2020-05-27 20:50:04 +00:00
}