3
0
Fork 0
forked from mirrors/nixpkgs

haskell-aeson-pretty: add version 0.7

This commit is contained in:
Peter Simons 2013-09-18 17:44:57 +02:00
parent 227a22f0b4
commit 11eb9ac282
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ cabal, aeson, attoparsec, cmdargs, text, unorderedContainers
, vector
}:
cabal.mkDerivation (self: {
pname = "aeson-pretty";
version = "0.7";
sha256 = "0zkqs3f4mr0v0j582h9ssq7dxgfkk59s7y66b640hc4zf0b5p7g7";
isLibrary = true;
isExecutable = true;
buildDepends = [
aeson attoparsec cmdargs text unorderedContainers vector
];
meta = {
homepage = "http://github.com/informatikr/aeson-pretty";
description = "JSON pretty-printing library and command-line tool";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -524,6 +524,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
aeson = callPackage ../development/libraries/haskell/aeson {};
aesonPretty = callPackage ../development/libraries/haskell/aeson-pretty {};
alternativeIo = callPackage ../development/libraries/haskell/alternative-io {};
alsaCore = callPackage ../development/libraries/haskell/alsa-core {};