1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/fdo-notify/default.nix
2014-04-06 21:53:16 +02:00

15 lines
397 B
Nix

{ cabal, dbus }:
cabal.mkDerivation (self: {
pname = "fdo-notify";
version = "0.3.1";
sha256 = "1n4zk1i7g34w0wk5zy8n4r63xbglxf62h8j78kv5fc2yn95l30vh";
buildDepends = [ dbus ];
meta = {
homepage = "http://bitbucket.org/taejo/fdo-notify/";
description = "Desktop Notifications client";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})