libnotify: add haskell lib

This commit is contained in:
Arseniy Seroka 2014-12-19 01:18:08 +03:00
parent e3825b47ec
commit 5bafbd3a2e
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, glib, gtk, pkgs }:
cabal.mkDerivation (self: {
pname = "libnotify";
version = "0.1.1.0";
sha256 = "1wc19v14agadj7dzi81lm3qzk2x33apaj5ylmg7x232k56xzfvr0";
buildDepends = [ glib gtk ];
extraLibraries = [ pkgs.libnotify ];
meta = {
description = "Bindings to libnotify library";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1556,6 +1556,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
libmpd = callPackage ../development/libraries/haskell/libmpd {};
libnotify = callPackage ../development/libraries/haskell/libnotify {};
liblastfm = callPackage ../development/libraries/haskell/liblastfm {};
libsystemdJournal = callPackage ../development/libraries/haskell/libsystemd-journal {};