mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 11:34:13 +00:00
haskell-aeson-pretty: add version 0.7
This commit is contained in:
parent
227a22f0b4
commit
11eb9ac282
20
pkgs/development/libraries/haskell/aeson-pretty/default.nix
Normal file
20
pkgs/development/libraries/haskell/aeson-pretty/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user