shithub: neindaw

ref: 22f7e9038ca004a322d82d3ee543eb8ed42dbec9
dir: /nix/shell.nix/

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

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