nixpkgs/pkgs/development/libraries/haskell/dbus/default.nix

21 lines
590 B
Nix
Raw Normal View History

2012-10-15 18:08:01 +00:00
{ cabal, cereal, libxmlSax, network, parsec, random, text
, transformers, vector, xmlTypes
}:
cabal.mkDerivation (self: {
pname = "dbus";
2014-02-17 11:48:42 +00:00
version = "0.10.6";
sha256 = "0jbysa7czhp7yl3fb6sxiqppg8yb3cdk4v8hcs4y8yzwjj0lm7mf";
2012-10-15 18:08:01 +00:00
buildDepends = [
cereal libxmlSax network parsec random text transformers vector
xmlTypes
];
jailbreak = true;
2012-10-15 18:08:01 +00:00
meta = {
homepage = "https://john-millikin.com/software/haskell-dbus/";
description = "A client library for the D-Bus IPC system";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
};
})