Skip to content
Snippets Groups Projects
Commit aeb3fc55 authored by Dom Brown's avatar Dom Brown
Browse files

autodocodec: init at 0.2.0.1

parent f99f4ce6
No related merge requests found
......@@ -74,6 +74,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "apecs" "0.9.4"
, callHackage "assoc" "1.0.2"
, callHackage "async" "2.2.4"
, callHackage "autodocodec" "0.2.0.1"
, callHackage "autodocodec-yaml" "0.2.0.2"
, callHackage "basement" "0.0.15"
, callHackage "base64" "0.4.2.4"
......
......@@ -31,6 +31,8 @@ final: prev: with pkgs.haskell.lib; {
async = prev.callPackage (./pkgs/async.nix) { };
autodocodec = prev.callPackage (./pkgs/autodocodec.nix) { };
autodocodec-yaml = prev.callPackage (./pkgs/autodocodec-yaml.nix) { };
base-compat = prev.callPackage (./pkgs/base-compat.nix) { };
......
{ mkDerivation, aeson, base, bytestring, containers, hashable, lib
, mtl, scientific, text, time, unordered-containers, validity
, validity-scientific, vector
}:
mkDerivation {
pname = "autodocodec";
version = "0.2.0.1";
sha256 = "4f4e2c2c57608a7e3060247a0f1b86e3f1257c2ba15af3c4649b9d87a6155bde";
libraryHaskellDepends = [
aeson base bytestring containers hashable mtl scientific text time
unordered-containers validity validity-scientific vector
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/NorfairKing/autodocodec#readme";
description = "Self-documenting encoder and decoder";
license = lib.licenses.mit;
}
\ 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