tech-ingolf-wagner-de/default.nix

34 lines
358 B
Nix
Raw Normal View History

# Nix-shell script
# ----------------
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "block-diagram";
env = buildEnv {
name = name;
paths = buildInputs;
};
buildInputs = [
blockdiag
nwdiag
seqdiag
actdiag
lessc
rake
feh
# not needed anymore
inotifyTools
];
shellHook = ''
'';
}