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

attoparsec-iso8601: init at 1.1.0.0

parent 305489f5
No related merge requests found
......@@ -81,6 +81,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "asn1-types" "0.3.4"
, callHackage "assoc" "1.0.2"
, callHackage "async" "2.2.4"
, callHackage "attoparsec-iso8601" "1.1.0.0"
, callHackage "attoparsec" "0.14.4"
, callHackage "autodocodec" "0.2.0.1"
, callHackage "autodocodec-schema" "0.1.0.2"
......
......@@ -47,6 +47,8 @@ final: prev: with pkgs.haskell.lib; {
attoparsec = prev.callPackage (./pkgs/attoparsec.nix) { };
attoparsec-iso8601 = prev.callPackage (./pkgs/attoparsec-iso8601.nix) { };
autodocodec = prev.callPackage (./pkgs/autodocodec.nix) { };
autodocodec-schema = prev.callPackage (./pkgs/autodocodec-schema.nix) { };
......
{ mkDerivation
, attoparsec
, base
, base-compat-batteries
, lib
, text
, time
, time-compat
}:
mkDerivation {
pname = "attoparsec-iso8601";
version = "1.1.0.0";
sha256 = "1109a817c448a154ec58047a8f01282530cb40d20fbd5690bc58b1443ecb264a";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
attoparsec
base
base-compat-batteries
text
time
time-compat
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/haskell/aeson";
description = "Parsing of ISO 8601 dates, originally from aeson";
license = lib.licenses.bsd3;
broken = false;
}
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