shithub: neindaw

ref: 7afee3728457100711a544d74ef9c18829bf1a8b
dir: /nix/shell.nix/

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

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