imap-notify

run a command when email is received
git clone git://jb55.com/imap-notify
Log | Files | Refs | README

commit 11d8f9b544531a27cbe0fc49ab5c1d4b26d3fba4
parent 9877e790020f05c7693320649ec253a2c8435740
Author: William Casarin <jb55@jb55.com>
Date:   Thu,  5 Aug 2021 19:42:08 -0700

fix nix

Signed-off-by: William Casarin <jb55@jb55.com>

Diffstat:
Mdefault.nix | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/default.nix b/default.nix @@ -1,7 +1,7 @@ -{ stdenv, makeWrapper, nodejs }: +{ stdenv, lib, makeWrapper, nodejs }: stdenv.mkDerivation rec { - name = "imap-notify-${version}"; + pname = "imap-notify"; version = "0.1.1"; src = ./.; @@ -19,7 +19,7 @@ stdenv.mkDerivation rec { --prefix PATH : "${nodejs}/bin" ''; - meta = with stdenv.lib; { + meta = with lib; { description = "imap-notify"; homepage = "https://github.com/jb55/imap-notify"; maintainers = with maintainers; [ jb55 ];