mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
44 lines
1.4 KiB
Nix
44 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, python3, bluez
|
|
, alsaSupport ? stdenv.isLinux, alsaLib ? null
|
|
, systemdSupport ? stdenv.isLinux, systemd ? null }:
|
|
|
|
assert alsaSupport -> alsaLib != null;
|
|
assert systemdSupport -> systemd != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "brltty";
|
|
version = "6.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://brltty.app/archive/${pname}-${version}.tar.gz";
|
|
sha256 = "14psxwlvgyi2fj1zh8rfykyjcjaya8xa7yg574bxd8y8n49n8hvb";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config python3.pkgs.cython ];
|
|
buildInputs = [ bluez ]
|
|
++ lib.optional alsaSupport alsaLib
|
|
++ lib.optional systemdSupport systemd;
|
|
|
|
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.
|
|
Some speech capability has also been incorporated.
|
|
'';
|
|
homepage = "https://brltty.app";
|
|
license = lib.licenses.gpl2;
|
|
maintainers = [ lib.maintainers.bramd ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
|
|
makeFlags = [ "PYTHON_PREFIX=$(out)" ];
|
|
|
|
preConfigurePhases = [ "preConfigure" ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace configure --replace /sbin/ldconfig ldconfig
|
|
'';
|
|
}
|