shithub: neindaw

ref: 66fa8ef996ffb3ded8ad1f9b6eb756727e0aa705
dir: /nix/shell.nix/

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

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