shithub: neindaw

ref: 81aebc21df6ba0bcf0e5e6bcbb615199e97e9ac9
dir: /nix/shell.nix/

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

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