haskell-libmpd: added version 0.6.0

svn path=/nixpkgs/trunk/; revision=30515
This commit is contained in:
Peter Simons 2011-11-21 18:02:22 +00:00
parent 4d33d402c1
commit 5ffe6771ad
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ cabal, mtl, network, time, utf8String }:
cabal.mkDerivation (self: {
pname = "libmpd";
version = "0.6.0";
sha256 = "1ln7kfiv75ykihym9ska4mvy0mrghs4swsrrkvmbh562nqmv4fvm";
isLibrary = true;
isExecutable = true;
buildDepends = [ mtl network time utf8String ];
meta = {
homepage = "http://github.com/joachifm/libmpd-haskell";
description = "An MPD client library";
license = "LGPL";
platforms = self.ghc.meta.platforms;
};
})

View File

@ -831,6 +831,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
leksahServer = callPackage ../development/libraries/haskell/leksah/leksah-server.nix {};
libmpd = callPackage ../development/libraries/haskell/libmpd {};
ListLike = callPackage ../development/libraries/haskell/ListLike {};
ltk = callPackage ../development/libraries/haskell/ltk {};