Created
May 5, 2020 00:26
-
-
Save glittershark/82d2093b912ac71370523f2881fc1745 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ fetchFromGitHub | |
, buildPythonPackage | |
, notmuch | |
, pygobject2 | |
, notify2 | |
, gobject-introspection | |
, libnotify | |
, pyinotify | |
, notify | |
}: | |
buildPythonPackage { | |
pname = "notifymuch"; | |
version = "0.1"; | |
src = fetchFromGitHub { | |
owner = "kspi"; | |
repo = "notifymuch"; | |
rev = "9d4aaf54599282ce80643b38195ff501120807f0"; | |
sha256 = "1lssr7iv43mp5v6nzrfbqlfzx8jcc7m636wlfyhhnd8ydd39n6k4"; | |
}; | |
buildInputs = [ | |
gobject-introspection libnotify | |
]; | |
nativeBuildInputs = [ | |
gobject-introspection libnotify | |
]; | |
propagatedBuildInputs = [ | |
notmuch | |
pygobject2 | |
notify2 | |
libnotify | |
pyinotify | |
]; | |
strictDeps = false; | |
# doInstallCheck = false; | |
doCheck = false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment