mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
4a317e9e87
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/brltty/versions
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ stdenv, fetchurl, pkgconfig, python3, bluez
|
|
, alsaSupport ? stdenv.isLinux, alsaLib ? null
|
|
, systemdSupport ? stdenv.isLinux, systemd ? null }:
|
|
|
|
assert alsaSupport -> alsaLib != null;
|
|
assert systemdSupport -> systemd != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "brltty-6.0";
|
|
|
|
src = fetchurl {
|
|
url = "http://brltty.com/archive/${name}.tar.gz";
|
|
sha256 = "0lmp9ab8gp4yv8m3qx4gxns3prrh7kvh8sfcd6vc45h40cgcsjxg";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig python3.pkgs.cython ];
|
|
buildInputs = [ bluez ]
|
|
++ stdenv.lib.optional alsaSupport alsaLib
|
|
++ stdenv.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 = http://www.brltty.com/;
|
|
license = stdenv.lib.licenses.gpl2;
|
|
maintainers = [ stdenv.lib.maintainers.bramd ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
|
|
makeFlags = [ "PYTHON_PREFIX=$(out)" ];
|
|
|
|
preConfigurePhases = [ "preConfigure" ];
|
|
|
|
preConfigure = ''
|
|
substituteInPlace configure --replace /sbin/ldconfig ldconfig
|
|
'';
|
|
}
|