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

26 lines
783 B
Nix
Raw Normal View History

2014-03-15 08:26:08 +00:00
{ cabal, cereal, chell, chellQuickcheck, filepath, libxmlSax
, network, parsec, QuickCheck, random, text, transformers, vector
, xmlTypes
2012-10-15 18:08:01 +00:00
}:
cabal.mkDerivation (self: {
pname = "dbus";
2014-03-15 08:26:08 +00:00
version = "0.10.7";
sha256 = "0xszynw6p07r7z9nlq8alx5lxfjm57gljya835ccj63hqhkr5yxh";
2012-10-15 18:08:01 +00:00
buildDepends = [
cereal libxmlSax network parsec random text transformers vector
xmlTypes
];
2014-03-15 08:26:08 +00:00
testDepends = [
cereal chell chellQuickcheck filepath libxmlSax network parsec
QuickCheck 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;
};
})