shithub: neindaw

ref: 57f49b5ea9632be13d0b695a2932fc7e6ed7ac0b
dir: neindaw/nix/shell.nix

View raw version
{ pkgs ? import <nixpkgs> {} }:

with pkgs; mkShell {
  buildInputs = [
    (callPackage ./faust2.nix {})
    graphviz
    gcc
  ];
}