nixpkgs/pkgs/development/libraries/haskell/libmpd/default.nix
Peter Simons 115ec41ba1 haskell-libmpd: updated to version 0.7.1
svn path=/nixpkgs/trunk/; revision=32139
2012-02-08 09:22:38 +00:00

21 lines
567 B
Nix

{ cabal, mtl, network, time, utf8String }:
cabal.mkDerivation (self: {
pname = "libmpd";
version = "0.7.1";
sha256 = "1vahcr1vjpr1wfkifp8ih3fajz1886zhc3cj643f7s3im7wjzw5j";
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;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})