shithub: neindaw

ref: 5cf2a66d5a71fad0128b2f9d0b088cea743c0d60
dir: /nix/shell.nix/

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

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