nixpkgs-suyu/pkgs/applications/audio/faust/faust2firefox.nix

15 lines
186 B
Nix
Raw Normal View History

2015-03-23 18:01:27 +01:00
{ faust
2021-02-01 09:05:09 +01:00
, xdg-utils
2015-03-23 18:01:27 +01:00
}:
# This just runs faust2svg, then attempts to open a browser using
# 'xdg-open'.
faust.wrap {
baseName = "faust2firefox";
2021-02-01 09:05:09 +01:00
runtimeInputs = [ xdg-utils ];
2015-03-23 18:01:27 +01:00
}