Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f8cc3fcb3aca
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d9df0d83f277
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 10, 2020

  1. brltty: 6.0 -> 6.1

    r-ryantm authored and Jon committed Apr 10, 2020
    Copy the full SHA
    d9df0d8 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/tools/misc/brltty/default.nix
6 changes: 3 additions & 3 deletions pkgs/tools/misc/brltty/default.nix
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@ assert alsaSupport -> alsaLib != null;
assert systemdSupport -> systemd != null;

stdenv.mkDerivation rec {
name = "brltty-6.0";
name = "brltty-6.1";

src = fetchurl {
url = "http://brltty.com/archive/${name}.tar.gz";
sha256 = "0lmp9ab8gp4yv8m3qx4gxns3prrh7kvh8sfcd6vc45h40cgcsjxg";
sha256 = "0nk54chr7z2w579vyiak9xk2avhnvrx7x2l5sk8nyw2zplchkx9q";
};

nativeBuildInputs = [ pkgconfig python3.pkgs.cython ];
@@ -26,7 +26,7 @@ stdenv.mkDerivation rec {
It drives the braille display, and provides complete screen review functionality.
Some speech capability has also been incorporated.
'';
homepage = http://www.brltty.com/;
homepage = "http://www.brltty.com/";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.bramd ];
platforms = stdenv.lib.platforms.all;