shithub: neindaw

ref: 8b1426f03a09a3c4c99c3d12c194edd87fbccd93
dir: /nix/shell.nix/

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

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