7d8132a92c
this creates some eval errors that will be fixed in the next commit
done with the following script:
```fish
\#!/usr/bin/env fish
set packagesjson (nix eval --impure --json --expr '
let
lib = import ./lib;
in
import pkgs/servers/x11/xorg/default.nix (lib.mapAttrs (
name: _:
if name == "lib" then
lib
else if name == "config" then
{ allowAliases = false; }
else
name
) (__functionArgs (import pkgs/servers/x11/xorg/default.nix))) { }
' | jq)
set one (grep '^ [A-Za-z0-9_-]*$' pkgs/servers/x11/xorg/default.nix | string trim | string replace -r '$' Z | sort | string sub -e -1)
set two (grep '^ [A-Za-z0-9_-]* = [A-Za-z0-9_-]*;$' pkgs/servers/x11/xorg/default.nix | cut -d= -f1 | string trim | string replace -r '$' Z | sort | string sub -e -1)
for arg in $one $two
set oname $arg
set nname (echo $packagesjson | jq -r .$oname)
if test $nname = null
echo (set_color red)warn:(set_color normal) unknown package xorg.$oname >&2
continue
end
echo $oname "->" $nname
# replace basic xorg.$name references
for file in (rg -F "xorg.$oname" --files-with-matches pkgs)
# special cases
sd -F "$oname = xorg.$oname;" "$nname = $nname;" $file
# replace
sd -F "xorg.$oname" "$nname" $file
# fixup function arguments
# prevent duplicate function args
if grep -E " ($oname|$nname),\$" $file >/dev/null
continue
end
if grep 'xorg\..' $file >/dev/null # case1: there is more so we can't just remove the function arg
if grep ' xorg,$' $file >/dev/null
sd ' xorg,$' " xorg,
$nname," $file
else if grep ' xorg ? .*,$' $file >/dev/null
sd 'xorg( ? .*),$' "xorg\$1,
$nname," $file
else
sd -F 'xorg,' "$nname,
xorg," $file
end
else # case there is no more xorg..* so we can just replace the function arg
sd 'xorg(| ? .*),.*$' "$nname," $file
end
end
end
nix fmt
```
85 lines
1.9 KiB
Nix
85 lines
1.9 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
decorator,
|
|
fetchFromGitHub,
|
|
json-rpc,
|
|
kaldi-active-grammar,
|
|
lark,
|
|
packaging,
|
|
psutil,
|
|
pynput,
|
|
pyperclip,
|
|
regex,
|
|
requests,
|
|
setuptools,
|
|
six,
|
|
sounddevice,
|
|
webrtcvad,
|
|
werkzeug,
|
|
wmctrl,
|
|
xdotool,
|
|
xprop,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "dragonfly";
|
|
version = "0.35.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dictation-toolbox";
|
|
repo = "dragonfly";
|
|
tag = version;
|
|
hash = "sha256-sqEEEr5/KG3cn4rmOGJt9zMNAjeLO6h3NJgg0EyewrM=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace dragonfly/actions/keyboard/_x11_xdotool.py \
|
|
--replace-fail 'xdotool = "xdotool"'${" "}'xdotool = "${xdotool}/bin/xdotool"'
|
|
substituteInPlace dragonfly/windows/x11_window.py \
|
|
--replace-fail 'xdotool = "xdotool"'${" "}'xdotool = "${xdotool}/bin/xdotool"' \
|
|
--replace-fail 'xprop = "xprop"'${" "}'xprop = "${xprop}/bin/xprop"' \
|
|
--replace-fail 'wmctrl = "wmctrl"'${" "}'wmctrl = "${wmctrl}/bin/wmctrl"'
|
|
'';
|
|
|
|
pythonRemoveDeps = [ "lark-parser" ];
|
|
|
|
propagatedBuildInputs = [
|
|
decorator
|
|
json-rpc
|
|
lark
|
|
packaging
|
|
psutil
|
|
pynput
|
|
pyperclip
|
|
regex
|
|
requests
|
|
setuptools # needs pkg_resources at runtime
|
|
six
|
|
werkzeug
|
|
];
|
|
|
|
optional-dependencies = {
|
|
kaldi = [
|
|
kaldi-active-grammar
|
|
sounddevice
|
|
webrtcvad
|
|
];
|
|
};
|
|
|
|
# Too many tests fail because of the unusual environment or
|
|
# because of the missing dependencies for some of the engines.
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "dragonfly" ];
|
|
|
|
meta = {
|
|
description = "Speech recognition framework allowing powerful Python-based scripting";
|
|
homepage = "https://github.com/dictation-toolbox/dragonfly";
|
|
changelog = "https://github.com/dictation-toolbox/dragonfly/blob/${version}/CHANGELOG.rst";
|
|
license = lib.licenses.lgpl3Plus;
|
|
maintainers = [ ];
|
|
};
|
|
}
|