shithub: neindaw

ref: d110794e66d44f71191c74a10a079a1951a893a6
dir: /nix/shell.nix/

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

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