shithub: neindaw

ref: 79bf1a7b1c60aa3efc5c6fad853294eba8c88d2f
dir: /nix/shell.nix/

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

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