Skip to content
Snippets Groups Projects
Commit 7c63b5ea authored by Daniel Firth's avatar Daniel Firth
Browse files

Merge branch 'aeson-typescript' into 'master'

aeson-typescript: 0.6.3.0

See merge request !156
parents b5b32a7d 1dba67b0
1 merge request!156aeson-typescript: 0.6.3.0
Pipeline #7099 passed with stages
in 1 minute and 1 second
......@@ -8,6 +8,7 @@ let packages =
, Only = H.callHackage "Only" "0.1"
, RSA = H.callHackage "RSA" "2.4.1"
, STMonadTrans = H.callHackage "STMonadTrans" "0.4.8"
, aeson-typescript = H.callHackage "aeson-typescript" "0.6.3.0"
, authenticate-oauth = H.callHackage "authenticate-oauth" "1.7"
, base64 = H.callHackage "base64" "1.0"
, bin = H.callHackage "bin" "0.1.4"
......
......@@ -22,6 +22,10 @@
, mapValue =
"3aad1a5a3d3a50cd7fcc00a9f1aee5a2d9de7ccb757c441d7f2036e31ef74392"
}
, { mapKey = "aeson-typescript"
, mapValue =
"8318137885b308ff64dc033ab2da68570e947a247407838b62e874343a9e18e8"
}
, { mapKey = "authenticate-oauth"
, mapValue =
"f3e07b3f426c98b08339ef702f2f99e2925cba4966af918c8a33aaac823fd104"
......
......@@ -14,6 +14,8 @@ final: prev: with pkgs.haskell.lib; {
STMonadTrans = f final prev "STMonadTrans" (final.callPackage (./pkgs/STMonadTrans.nix) { });
aeson-typescript = f final prev "aeson-typescript" (final.callPackage (./pkgs/aeson-typescript.nix) { });
authenticate-oauth = f final prev "authenticate-oauth" (final.callPackage (./pkgs/authenticate-oauth.nix) { });
base64 = f final prev "base64" (final.callPackage (./pkgs/base64.nix) { });
......
{ mkDerivation, aeson, base, bytestring, containers, directory
, filepath, hspec, lib, mtl, process, string-interpolate
, template-haskell, temporary, text, th-abstraction, transformers
, unordered-containers
}:
mkDerivation {
pname = "aeson-typescript";
version = "0.6.3.0";
sha256 = "e977a9011f4197b80dd4b7c8ea1a5f0d6b3cb2bcf83c27e801ba36050295b0ae";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson base bytestring containers mtl string-interpolate
template-haskell text th-abstraction transformers
unordered-containers
];
testHaskellDepends = [
aeson base bytestring containers directory filepath hspec mtl
process string-interpolate template-haskell temporary text
th-abstraction transformers unordered-containers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/codedownio/aeson-typescript#readme";
description = "Generate TypeScript definition files from your ADTs";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment