mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
haskell-libmpd: added version 0.6.0
svn path=/nixpkgs/trunk/; revision=30515
This commit is contained in:
parent
4d33d402c1
commit
5ffe6771ad
16
pkgs/development/libraries/haskell/libmpd/default.nix
Normal file
16
pkgs/development/libraries/haskell/libmpd/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user