2021-01-17 03:51:22 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, python3, bluez
|
2023-11-21 14:09:31 +00:00
|
|
|
, tcl, acl, kmod, coreutils, shadow, util-linux
|
2021-06-10 02:57:09 +00:00
|
|
|
, alsaSupport ? stdenv.isLinux, alsa-lib
|
2022-09-21 07:04:52 +00:00
|
|
|
, systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd, systemd
|
2021-03-01 17:04:07 +00:00
|
|
|
}:
|
2015-04-29 21:02:09 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-03-01 07:55:29 +00:00
|
|
|
pname = "brltty";
|
2023-11-22 22:27:10 +00:00
|
|
|
version = "6.6";
|
2017-12-25 05:46:30 +00:00
|
|
|
|
2015-04-29 21:02:09 +00:00
|
|
|
src = fetchurl {
|
2024-08-21 00:23:37 +00:00
|
|
|
url = "https://brltty.app/archive/brltty-${version}.tar.gz";
|
2023-11-22 22:27:10 +00:00
|
|
|
sha256 = "E+j2mb8UTuGx6PkAOt03hQkvf1XvEHxJEuPBT2zMpPw=";
|
2015-04-29 21:02:09 +00:00
|
|
|
};
|
2017-12-25 05:46:30 +00:00
|
|
|
|
2023-11-22 22:27:10 +00:00
|
|
|
nativeBuildInputs = [ pkg-config python3.pkgs.cython python3.pkgs.setuptools tcl ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ bluez ]
|
2021-06-10 02:57:09 +00:00
|
|
|
++ lib.optional alsaSupport alsa-lib
|
2021-01-15 09:19:50 +00:00
|
|
|
++ lib.optional systemdSupport systemd;
|
2017-12-25 05:46:30 +00:00
|
|
|
|
2015-04-29 21:02:09 +00:00
|
|
|
meta = {
|
|
|
|
description = "Access software for a blind person using a braille display";
|
|
|
|
longDescription = ''
|
|
|
|
BRLTTY is a background process (daemon) which provides access to the Linux/Unix
|
|
|
|
console (when in text mode) for a blind person using a refreshable braille display.
|
|
|
|
It drives the braille display, and provides complete screen review functionality.
|
2017-12-25 05:46:30 +00:00
|
|
|
Some speech capability has also been incorporated.
|
2015-04-29 21:02:09 +00:00
|
|
|
'';
|
2021-03-01 07:55:29 +00:00
|
|
|
homepage = "https://brltty.app";
|
2021-03-01 08:00:02 +00:00
|
|
|
license = lib.licenses.gpl2Plus;
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = [ lib.maintainers.bramd ];
|
|
|
|
platforms = lib.platforms.all;
|
2015-04-29 21:02:09 +00:00
|
|
|
};
|
2017-12-25 05:46:30 +00:00
|
|
|
|
2021-03-01 07:57:03 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PYTHON_PREFIX=$(out)"
|
|
|
|
"SYSTEMD_UNITS_DIRECTORY=$(out)/lib/systemd/system"
|
|
|
|
"SYSTEMD_USERS_DIRECTORY=$(out)/lib/sysusers.d"
|
|
|
|
"SYSTEMD_FILES_DIRECTORY=$(out)/lib/tmpfiles.d"
|
2023-11-22 22:27:10 +00:00
|
|
|
"UDEV_PARENT_LOCATION=$(out)/lib"
|
|
|
|
"INSTALL_COMMANDS_DIRECTORY=$(out)/libexec/brltty"
|
2021-04-03 20:15:33 +00:00
|
|
|
"UDEV_RULES_TYPE=all"
|
2021-03-01 07:57:03 +00:00
|
|
|
"POLKIT_POLICY_DIR=$(out)/share/polkit-1/actions"
|
|
|
|
"POLKIT_RULE_DIR=$(out)/share/polkit-1/rules.d"
|
2023-11-22 22:27:10 +00:00
|
|
|
"TCL_DIR=$(out)/lib"
|
2021-03-01 07:57:03 +00:00
|
|
|
];
|
|
|
|
configureFlags = [
|
|
|
|
"--with-writable-directory=/run/brltty"
|
|
|
|
"--with-updatable-directory=/var/lib/brltty"
|
|
|
|
"--with-api-socket-path=/var/lib/BrlAPI"
|
|
|
|
];
|
|
|
|
installFlags = [ "install-systemd" "install-udev" "install-polkit" ];
|
2016-10-22 20:12:30 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
2015-04-29 21:02:09 +00:00
|
|
|
substituteInPlace configure --replace /sbin/ldconfig ldconfig
|
2021-03-01 07:57:03 +00:00
|
|
|
|
|
|
|
# Some script needs a working tclsh shebang
|
|
|
|
patchShebangs .
|
|
|
|
|
|
|
|
# Skip impure operations
|
|
|
|
substituteInPlace Programs/Makefile.in \
|
|
|
|
--replace install-writable-directory "" \
|
|
|
|
--replace install-apisoc-directory "" \
|
|
|
|
--replace install-api-key ""
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
# Rewrite absolute paths
|
|
|
|
substituteInPlace $out/bin/brltty-mkuser \
|
|
|
|
--replace '/sbin/nologin' '${shadow}/bin/nologin'
|
|
|
|
(
|
|
|
|
cd $out/lib
|
|
|
|
substituteInPlace systemd/system/brltty@.service \
|
|
|
|
--replace '/sbin/modprobe' '${kmod}/bin/modprobe'
|
2021-04-03 20:15:33 +00:00
|
|
|
# Ensure the systemd-wrapper script uses the correct path to the brltty binary
|
|
|
|
sed "/^Environment=\"BRLTTY_EXECUTABLE_ARGUMENTS.*/a Environment=\"BRLTTY_EXECUTABLE_PATH=$out/bin/brltty\"" -i systemd/system/brltty@.service
|
2021-03-01 07:57:03 +00:00
|
|
|
substituteInPlace systemd/system/brltty-device@.service \
|
|
|
|
--replace '/usr/bin/true' '${coreutils}/bin/true'
|
|
|
|
substituteInPlace udev/rules.d/90-brltty-uinput.rules \
|
|
|
|
--replace '/usr/bin/setfacl' '${acl}/bin/setfacl'
|
2023-11-22 22:27:10 +00:00
|
|
|
substituteInPlace udev/rules.d/90-brltty-hid.rules \
|
|
|
|
--replace '/usr/bin/setfacl' '${acl}/bin/setfacl'
|
|
|
|
substituteInPlace tmpfiles.d/brltty.conf \
|
2021-03-01 07:57:03 +00:00
|
|
|
--replace "$out/etc" '/etc'
|
|
|
|
|
|
|
|
# Remove unused commands from udev rules
|
2023-11-22 22:27:10 +00:00
|
|
|
sed '/initctl/d' -i udev/rules.d/90-brltty-usb-generic.rules
|
|
|
|
sed '/initctl/d' -i udev/rules.d/90-brltty-usb-customized.rules
|
2021-04-03 20:15:33 +00:00
|
|
|
# Remove pulse-access group from systemd unit and sysusers
|
|
|
|
substituteInPlace systemd/system/brltty@.service \
|
|
|
|
--replace 'SupplementaryGroups=pulse-access' '# SupplementaryGroups=pulse-access'
|
|
|
|
substituteInPlace sysusers.d/brltty.conf \
|
|
|
|
--replace 'm brltty pulse-access' '# m brltty pulse-access'
|
|
|
|
)
|
|
|
|
substituteInPlace $out/libexec/brltty/systemd-wrapper \
|
|
|
|
--replace 'logger' "${util-linux}/bin/logger" \
|
2023-11-21 14:09:31 +00:00
|
|
|
--replace 'udevadm' "${systemd}/bin/udevadm"
|
2015-04-29 21:02:09 +00:00
|
|
|
'';
|
|
|
|
}
|