summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/liblastfm/default.nix
blob: 1103651f0d0ce18e1f8abdaee2991416393a787c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, aeson, cereal, contravariant, cryptoApi, httpConduit
, httpTypes, network, pureMD5, semigroups, tagged, text, void
}:

cabal.mkDerivation (self: {
  pname = "liblastfm";
  version = "0.3.2.0";
  sha256 = "09xsjkwknfvdd3zb7a1qbch45ri6knkn33wl6xbi48sw5i79lxnv";
  buildDepends = [
    aeson cereal contravariant cryptoApi httpConduit httpTypes network
    pureMD5 semigroups tagged text void
  ];
  meta = {
    description = "Lastfm API interface";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})