mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
14 lines
186 B
Nix
14 lines
186 B
Nix
{ faust
|
|
, xdg-utils
|
|
}:
|
|
|
|
# This just runs faust2svg, then attempts to open a browser using
|
|
# 'xdg-open'.
|
|
|
|
faust.wrap {
|
|
|
|
baseName = "faust2firefox";
|
|
|
|
runtimeInputs = [ xdg-utils ];
|
|
|
|
}
|