dotfiles/overlays/ntfy.nix

12 lines
282 B
Nix
Raw Normal View History

2018-11-16 17:27:28 +01:00
self: super:
{
2019-07-13 03:01:05 +02:00
ntfy = super.ntfy.overrideAttrs (old: rec {
src = super.fetchFromGitHub {
owner = "dschep";
repo = "ntfy";
rev = "d7a359bd6e4902e0067c62058179d8c678361154";
sha256 = "1n08w6h1narq3jwhd4k1p23hyysn6knaij0r1gpnakx9437h6yk4";
2018-11-16 17:27:28 +01:00
};
2019-07-13 03:01:05 +02:00
});
2018-11-16 17:27:28 +01:00
}