shithub: neindaw

ref: 5585cd29fb01e4d2848c0a3fe2d87b40687ce807
dir: /nix/shell.nix/

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

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