shithub: neindaw

ref: e71361d5f47f408ca3192ecdf2a44de48c0aeef9
dir: /nix/shell.nix/

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

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