mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
15 lines
186 B
Nix
15 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 ];
|
||
|
|
||
|
}
|