shithub: neindaw

ref: 1ef59f6dbd62ea361c9416e878a6c8d0a8f8b93a
dir: /nix/shell.nix/

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

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