tech-ingolf-wagner-de/default.nix

28 lines
307 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-08-15 15:12:54 +02:00
# run this on start
# -----------------
shellHook = ''
2018-08-15 15:12:54 +02:00
export HELLO="world"
'';
}