Skip to content

Commit 9a72f42

Browse files
committed
brltty: 6.6 -> 6.7
1 parent 8f85b83 commit 9a72f42

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

pkgs/by-name/br/brltty/package.nix

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@
1515
alsa-lib,
1616
systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd,
1717
systemd,
18+
ncurses,
1819
}:
1920

2021
stdenv.mkDerivation rec {
2122
pname = "brltty";
22-
version = "6.6";
23+
version = "6.7";
2324

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

2930
nativeBuildInputs = [
@@ -32,7 +33,13 @@ stdenv.mkDerivation rec {
3233
python3.pkgs.setuptools
3334
tcl
3435
];
35-
buildInputs = [ bluez ] ++ lib.optional alsaSupport alsa-lib ++ lib.optional systemdSupport systemd;
36+
buildInputs =
37+
[
38+
bluez
39+
ncurses.dev
40+
]
41+
++ lib.optional alsaSupport alsa-lib
42+
++ lib.optional systemdSupport systemd;
3643

3744
meta = {
3845
description = "Access software for a blind person using a braille display";

0 commit comments

Comments
 (0)