2012-04-23 11:34:01 +02:00
|
|
|
{ cabal, filepath, mtl, network, text, time, utf8String }:
|
2011-11-21 19:02:22 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "libmpd";
|
2012-04-23 11:34:01 +02:00
|
|
|
version = "0.8.0";
|
|
|
|
sha256 = "0sn9yqiqr011glb7q0f3xj24wkkvnib0khzf833npcas4420d0ya";
|
|
|
|
buildDepends = [ filepath mtl network text time utf8String ];
|
2011-11-21 19:02:22 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/joachifm/libmpd-haskell";
|
|
|
|
description = "An MPD client library";
|
|
|
|
license = "LGPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-11-21 19:02:22 +01:00
|
|
|
};
|
|
|
|
})
|