2017-12-25 06:46:30 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python3, alsaSupport, alsaLib ? null, bluez, systemdSupport, systemd ? null }:
|
2015-04-29 23:02:09 +02:00
|
|
|
|
|
|
|
assert alsaSupport -> alsaLib != null;
|
2016-10-22 22:12:30 +02:00
|
|
|
assert systemdSupport -> systemd != null;
|
2015-04-29 23:02:09 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-02-25 18:50:25 +01:00
|
|
|
name = "brltty-5.6";
|
2017-12-25 06:46:30 +01:00
|
|
|
|
2015-04-29 23:02:09 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://brltty.com/archive/${name}.tar.gz";
|
2018-02-25 18:50:25 +01:00
|
|
|
sha256 = "06by51n35w0jq14w1vimxk3ssrlmiiw49wpxw29rasc106mpysfn";
|
2015-04-29 23:02:09 +02:00
|
|
|
};
|
2017-12-25 06:46:30 +01:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig python3.pkgs.cython ];
|
2017-09-05 23:26:13 +02:00
|
|
|
buildInputs = [ bluez ]
|
2016-10-22 22:12:30 +02:00
|
|
|
++ stdenv.lib.optional alsaSupport alsaLib
|
|
|
|
++ stdenv.lib.optional systemdSupport systemd;
|
2017-12-25 06:46:30 +01:00
|
|
|
|
2015-04-29 23:02:09 +02: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 06:46:30 +01:00
|
|
|
Some speech capability has also been incorporated.
|
2015-04-29 23:02:09 +02:00
|
|
|
'';
|
|
|
|
homepage = http://www.brltty.com/;
|
|
|
|
license = stdenv.lib.licenses.gpl2;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.bramd ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2017-12-25 06:46:30 +01:00
|
|
|
|
|
|
|
makeFlags = [ "PYTHON_PREFIX=$(out)" ];
|
|
|
|
|
2016-10-22 22:12:30 +02:00
|
|
|
preConfigurePhases = [ "preConfigure" ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
2015-04-29 23:02:09 +02:00
|
|
|
substituteInPlace configure --replace /sbin/ldconfig ldconfig
|
|
|
|
'';
|
|
|
|
}
|