Skip to content

Instantly share code, notes, and snippets.

@glittershark
Created May 5, 2020 00:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glittershark/82d2093b912ac71370523f2881fc1745 to your computer and use it in GitHub Desktop.
Save glittershark/82d2093b912ac71370523f2881fc1745 to your computer and use it in GitHub Desktop.
{ 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