tech-ingolf-wagner-de/shell.nix

31 lines
337 B
Nix
Raw Normal View History

2018-08-15 15:12:54 +02:00
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
2018-08-15 15:12:54 +02:00
# needed pkgs
# -----------
buildInputs = with pkgs; [
hugo
blockdiag
nwdiag
seqdiag
actdiag
lessc
rake
feh
2018-08-18 20:54:56 +02:00
ion
2018-09-28 20:51:59 +02:00
inotify-tools
2018-08-25 19:07:32 +02:00
pandoc
];
2018-08-15 15:12:54 +02:00
# run this on start
# -----------------
shellHook = ''
2018-08-15 15:12:54 +02:00
export HELLO="world"
'';
}