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

21 lines
590 B
Nix
Raw Normal View History

2012-10-15 19:08:01 +01:00
{ cabal, cereal, libxmlSax, network, parsec, random, text
, transformers, vector, xmlTypes
}:
cabal.mkDerivation (self: {
pname = "dbus";
2013-11-05 13:22:52 +00:00
version = "0.10.5";
sha256 = "1wblqkwlwv3bxhz2n4qm0w0npawng86y2hyacjxmx8cw25gkw41x";
2012-10-15 19:08:01 +01:00
buildDepends = [
cereal libxmlSax network parsec random text transformers vector
xmlTypes
];
jailbreak = true;
2012-10-15 19:08:01 +01: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;
};
})