about summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorLuke Granger-Brown <git@lukegb.com>2022-09-24 17:14:59 +0100
committerLuke Granger-Brown <git@lukegb.com>2022-09-24 18:27:51 +0000
commitd1d41e4fa5cf92e5d35d9aea685929f7cf617b07 (patch)
tree7c8c80abe5eaf53a47f9bf8aa2d4dd43e87525ca /pkgs/top-level
parent6fcaded221057f6bc60600bb84ff5578df902c47 (diff)
downloadnixlib-d1d41e4fa5cf92e5d35d9aea685929f7cf617b07.tar
nixlib-d1d41e4fa5cf92e5d35d9aea685929f7cf617b07.tar.gz
nixlib-d1d41e4fa5cf92e5d35d9aea685929f7cf617b07.tar.bz2
nixlib-d1d41e4fa5cf92e5d35d9aea685929f7cf617b07.tar.lz
nixlib-d1d41e4fa5cf92e5d35d9aea685929f7cf617b07.tar.xz
nixlib-d1d41e4fa5cf92e5d35d9aea685929f7cf617b07.tar.zst
nixlib-d1d41e4fa5cf92e5d35d9aea685929f7cf617b07.zip
ntfy: add options to turn off optional features
This splits out the things which are ntfy optional dependencies so
that they can be disabled - in particular, sleekxmpp is broken on Darwin
and because of the way the package is designed at the moment it isn't
possible to turn it off.

This also allows you to use newer or older python interpreters without
overriding e.g. "python39" to actually mean python310.
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index ff3535c7c78d..ae42a7371c04 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -9447,7 +9447,7 @@ with pkgs;
   # ntfsprogs are merged into ntfs-3g
   ntfsprogs = pkgs.ntfs3g;
 
-  ntfy = callPackage ../tools/misc/ntfy {};
+  ntfy = callPackage ../tools/misc/ntfy { python = python39; };
 
   ntfy-sh = callPackage ../tools/misc/ntfy-sh { };