shithub: neindaw

ref: d654397d87dff31fa573754dba4911b5e8f71231
dir: /nix/shell.nix/

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

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