summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSamuel Dionne-Riel <samuel@dionne-riel.com>2019-02-15 17:49:01 -0500
committerGitHub <noreply@github.com>2019-02-15 17:49:01 -0500
commitf8eef26991c3a6660e4343ab42253056826932a8 (patch)
tree0d066edaafd70e729bd898d17c75196cd6ce124b /pkgs/tools
parent2e359d93ef5cffbafa7626c20161cb355844d514 (diff)
parente29565110886f9857e48376191f9fbd8e43e2a6d (diff)
downloadnixpkgs-f8eef26991c3a6660e4343ab42253056826932a8.tar
nixpkgs-f8eef26991c3a6660e4343ab42253056826932a8.tar.gz
nixpkgs-f8eef26991c3a6660e4343ab42253056826932a8.tar.bz2
nixpkgs-f8eef26991c3a6660e4343ab42253056826932a8.tar.lz
nixpkgs-f8eef26991c3a6660e4343ab42253056826932a8.tar.xz
nixpkgs-f8eef26991c3a6660e4343ab42253056826932a8.tar.zst
nixpkgs-f8eef26991c3a6660e4343ab42253056826932a8.zip
Merge pull request #55732 from oxij/tree/move-defaults-to-package-files-mostly-pulse
all-packages.nix: move defaults to package files continues
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/brltty/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/tools/misc/brltty/default.nix b/pkgs/tools/misc/brltty/default.nix
index 6635f293195..99ba8e5e515 100644
--- a/pkgs/tools/misc/brltty/default.nix
+++ b/pkgs/tools/misc/brltty/default.nix
@@ -1,4 +1,6 @@
-{ stdenv, fetchurl, pkgconfig, python3, alsaSupport, alsaLib ? null, bluez, systemdSupport, systemd ? null }:
+{ stdenv, fetchurl, pkgconfig, python3, bluez
+, alsaSupport ? stdenv.isLinux, alsaLib ? null
+, systemdSupport ? stdenv.isLinux, systemd ? null }:
 
 assert alsaSupport -> alsaLib != null;
 assert systemdSupport -> systemd != null;