nixpkgs/pkgs/tools/misc/brltty/default.nix

39 lines
1.3 KiB
Nix
Raw Normal View History

2016-10-22 20:12:30 +00:00
{ stdenv, fetchurl, pkgconfig, alsaSupport, alsaLib ? null, bluez, systemdSupport, systemd ? null }:
2015-04-29 21:02:09 +00:00
assert alsaSupport -> alsaLib != null;
2016-10-22 20:12:30 +00:00
assert systemdSupport -> systemd != null;
2015-04-29 21:02:09 +00:00
stdenv.mkDerivation rec {
2017-06-24 10:19:33 +00:00
name = "brltty-5.5";
2015-04-29 21:02:09 +00:00
src = fetchurl {
url = "http://brltty.com/archive/${name}.tar.gz";
2017-06-24 10:19:33 +00:00
sha256 = "0slrqanwj9cm7ql0rpb296xq676zrc1sjyr13lh5lygp4b8qfpci";
2015-04-29 21:02:09 +00:00
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ bluez ]
2016-10-22 20:12:30 +00:00
++ stdenv.lib.optional alsaSupport alsaLib
++ stdenv.lib.optional systemdSupport systemd;
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.
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;
};
2016-10-22 20:12:30 +00:00
preConfigurePhases = [ "preConfigure" ];
preConfigure = ''
2015-04-29 21:02:09 +00:00
substituteInPlace configure --replace /sbin/ldconfig ldconfig
'';
}