maj/shell.nix

26 lines
456 B
Nix
Raw Normal View History

2020-07-31 11:49:06 +00:00
{ pkgs ? import <nixpkgs> { } }:
2020-07-24 02:25:35 +00:00
2020-07-31 11:49:06 +00:00
let
nur = import (builtins.fetchTarball
"https://github.com/nix-community/NUR/archive/master.tar.gz") {
inherit pkgs;
};
tex = with pkgs;
texlive.combine { inherit (texlive) scheme-medium bitter titlesec; };
in pkgs.mkShell {
2020-07-24 02:25:35 +00:00
buildInputs = with pkgs; [
2020-07-31 11:49:06 +00:00
rustc
cargo
rls
rustfmt
cargo-watch
2020-07-25 16:39:10 +00:00
pkg-config
ncurses
2020-07-31 11:49:06 +00:00
kindlegen
nur.repos.mic92.pandoc-bin
tex
2020-07-24 02:25:35 +00:00
];
}