From 44cf7ed71c907af437a4fd526d43e51f293648af Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 28 Mar 2013 00:29:09 +0100 Subject: [PATCH] haskell-liblastfm: update to version 0.1.1.1 --- .../libraries/haskell/liblastfm/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/haskell/liblastfm/default.nix b/pkgs/development/libraries/haskell/liblastfm/default.nix index 323f1797fef0..096a39b9a3b3 100644 --- a/pkgs/development/libraries/haskell/liblastfm/default.nix +++ b/pkgs/development/libraries/haskell/liblastfm/default.nix @@ -1,14 +1,18 @@ -{ cabal, aeson, cereal, cryptoApi, httpConduit, httpTypes, network -, pureMD5, text +{ cabal, aeson, attoparsec, cereal, cryptoApi, httpConduit +, httpTypes, HUnit, network, pureMD5, testFramework +, testFrameworkHunit, text }: cabal.mkDerivation (self: { pname = "liblastfm"; - version = "0.1.1.0"; - sha256 = "1yrgyb0m1gdhsrkv3b8a5a0qii67v9gx1kbv79ixlac60bsm4q95"; + version = "0.1.1.1"; + sha256 = "1svqxi85n18r9szmlcny51j71zzkki9pnfxnxim78y5vh0nf82qv"; buildDepends = [ aeson cereal cryptoApi httpConduit httpTypes network pureMD5 text ]; + testDepends = [ + aeson attoparsec HUnit testFramework testFrameworkHunit text + ]; meta = { description = "Lastfm API interface"; license = self.stdenv.lib.licenses.mit;