Skip to content

Commit

Permalink
[Backport release-24.11] brltty: 6.6 -> 6.7 (#367366)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfgangwalther authored Dec 22, 2024
2 parents 1807c2b + 4470299 commit b784f0f
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions pkgs/by-name/br/brltty/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,16 @@
alsa-lib,
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
systemd,
ncurses,
}:

stdenv.mkDerivation rec {
pname = "brltty";
version = "6.6";
version = "6.7";

src = fetchurl {
url = "https://brltty.app/archive/brltty-${version}.tar.gz";
sha256 = "E+j2mb8UTuGx6PkAOt03hQkvf1XvEHxJEuPBT2zMpPw=";
sha256 = "sha256-FsM9AeL1lnBziJlmB7EZAIgDKylT8D4Il81Fe1y9Yjg=";
};

nativeBuildInputs = [
Expand All @@ -32,7 +33,13 @@ stdenv.mkDerivation rec {
python3.pkgs.setuptools
tcl
];
buildInputs = [ bluez ] ++ lib.optional alsaSupport alsa-lib ++ lib.optional systemdSupport systemd;
buildInputs =
[
bluez
ncurses.dev
]
++ lib.optional alsaSupport alsa-lib
++ lib.optional systemdSupport systemd;

meta = {
description = "Access software for a blind person using a braille display";
Expand Down

0 comments on commit b784f0f

Please sign in to comment.