mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
commit
63347357ac
@ -2631,6 +2631,8 @@ let
|
||||
# ntfsprogs are merged into ntfs-3g
|
||||
ntfsprogs = pkgs.ntfs3g;
|
||||
|
||||
ntfy = pythonPackages.ntfy;
|
||||
|
||||
ntopng = callPackage ../tools/networking/ntopng { };
|
||||
|
||||
ntp = callPackage ../tools/networking/ntp {
|
||||
|
@ -12816,6 +12816,26 @@ in modules // {
|
||||
};
|
||||
};
|
||||
|
||||
ntfy = buildPythonPackage rec {
|
||||
version = "1.2.0";
|
||||
name = "ntfy-${version}";
|
||||
src = pkgs.fetchFromGitHub {
|
||||
owner = "dschep";
|
||||
repo = "ntfy";
|
||||
rev = "v${version}";
|
||||
sha256 = "0yjxwisxpxy3vpnqk9nw5k3db3xx6wyf6sk1px9m94s30glcq2cc";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ appdirs pyyaml requests dbus ];
|
||||
|
||||
meta = {
|
||||
description = "A utility for sending notifications, on demand and when commands finish";
|
||||
homepage = http://ntfy.rtfd.org/;
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ kamilchm ];
|
||||
};
|
||||
};
|
||||
|
||||
ntplib = buildPythonPackage rec {
|
||||
name = "ntplib-0.3.2";
|
||||
src = pkgs.fetchurl {
|
||||
|
Loading…
Reference in New Issue
Block a user