Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Oct 2, 2023
1 parent 8c437dd commit fc83d6b
Show file tree
Hide file tree
Showing 38 changed files with 1,417 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "cache"; version = "0.1.3.0"; };
license = "BSD-3-Clause";
copyright = "2016 Henri Verroken";
maintainer = "[email protected]";
author = "Henri Verroken";
homepage = "https://github.com/hverr/haskell-cache#readme";
url = "";
synopsis = "An in-memory key/value store with expiration support";
description = "An in-memory key/value store with expiration support, similar\nto patrickmn/go-cache for Go.\n\nThe cache is a shared mutable HashMap implemented using STM and\nwith support for expiration times.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."clock" or (errorHandler.buildDepError "clock"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
tests = {
"cache-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cache" or (errorHandler.buildDepError "cache"))
(hsPkgs."clock" or (errorHandler.buildDepError "clock"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.0";
identifier = { name = "egison-pattern-src"; version = "0.2.1.2"; };
license = "BSD-3-Clause";
copyright = "Copyright 2020 coord_e";
maintainer = "coord_e <[email protected]>, Satoshi Egi <[email protected]>";
author = "coord_e";
homepage = "https://github.com/egison/egison-pattern-src#readme";
url = "";
synopsis = "Manipulating Egison patterns: abstract syntax, parser, and pretty-printer";
description = "@egison-pattern-src@ provides a standalone syntax definition for patterns in [the Egison programming language](https://www.egison.org/).\nThis package enables you to embed Egison's patterns in your parser (pretty-printer) by supplying expression and name parsers (printers) externally.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."free" or (errorHandler.buildDepError "free"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."parser-combinators" or (errorHandler.buildDepError "parser-combinators"))
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
(hsPkgs."recursion-schemes" or (errorHandler.buildDepError "recursion-schemes"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
tests = {
"test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."egison-pattern-src" or (errorHandler.buildDepError "egison-pattern-src"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
build-tools = [
(hsPkgs.buildPackages.tasty-discover.components.exes.tasty-discover or (pkgs.buildPackages.tasty-discover or (errorHandler.buildToolDepError "tasty-discover:tasty-discover")))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,95 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "floskell"; version = "0.11.0"; };
license = "BSD-3-Clause";
copyright = "2014 Chris Done, 2015 Andrew Gibiansky, 2016-2023 Enno Cramer";
maintainer = "[email protected]";
author = "Chris Done, Andrew Gibiansky, Tobias Pflug, Pierre Radermecker, Enno Cramer";
homepage = "https://github.com/ennocramer/floskell";
url = "";
synopsis = "A flexible Haskell source code pretty printer";
description = "A flexible Haskell source code pretty printer.\n\nSee the Github page for usage\\/explanation: <https://github.com/ennocramer/floskell>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."attoparsec-aeson" or (errorHandler.buildDepError "attoparsec-aeson"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."haskell-src-exts" or (errorHandler.buildDepError "haskell-src-exts"))
(hsPkgs."monad-dijkstra" or (errorHandler.buildDepError "monad-dijkstra"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
exes = {
"floskell" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."floskell" or (errorHandler.buildDepError "floskell"))
(hsPkgs."aeson-pretty" or (errorHandler.buildDepError "aeson-pretty"))
(hsPkgs."ansi-wl-pprint" or (errorHandler.buildDepError "ansi-wl-pprint"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."haskell-src-exts" or (errorHandler.buildDepError "haskell-src-exts"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
tests = {
"floskell-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."floskell" or (errorHandler.buildDepError "floskell"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."haskell-src-exts" or (errorHandler.buildDepError "haskell-src-exts"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
benchmarks = {
"floskell-bench" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."floskell" or (errorHandler.buildDepError "floskell"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."haskell-src-exts" or (errorHandler.buildDepError "haskell-src-exts"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "fontconfig-pure"; version = "0.3.0.0"; };
license = "MIT";
copyright = "";
maintainer = "[email protected]";
author = "Adrian Cochrane";
homepage = "https://www.freedesktop.org/wiki/Software/fontconfig/";
url = "";
synopsis = "Pure-functional language bindings to FontConfig";
description = "Resolves font descriptions to font libraries, including ones installed on your freedesktop (Linux or BSD system).";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."linear" or (errorHandler.buildDepError "linear"))
(hsPkgs."freetype2" or (errorHandler.buildDepError "freetype2"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."css-syntax" or (errorHandler.buildDepError "css-syntax"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."stylist-traits" or (errorHandler.buildDepError "stylist-traits"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
];
pkgconfig = [
(pkgconfPkgs."fontconfig" or (errorHandler.pkgConfDepError "fontconfig"))
];
buildable = true;
};
exes = {
"fontconfig-pure" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."fontconfig-pure" or (errorHandler.buildDepError "fontconfig-pure"))
];
buildable = true;
};
};
tests = {
"test-fontconfig" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."fontconfig-pure" or (errorHandler.buildDepError "fontconfig-pure"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,76 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "hakyllbars"; version = "1.0.0.2"; };
license = "BSD-3-Clause";
copyright = "Copyright (C) 2021-2023 Logan McGrath";
maintainer = "[email protected]";
author = "Logan McGrath";
homepage = "";
url = "";
synopsis = "A Hakyll compiler for Handlebars-like templates";
description = "Hakyllbars brings a handlebars-like template syntax to Hakyll. Please see the\ndocumentation at <https://keywordsalad.github.io/hakyllbars/>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."MissingH" or (errorHandler.buildDepError "MissingH"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."hakyll" or (errorHandler.buildDepError "hakyll"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri"))
(hsPkgs."pandoc" or (errorHandler.buildDepError "pandoc"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml"))
];
buildable = true;
};
exes = {
"hakyllbars-site" = {
depends = [
(hsPkgs."MissingH" or (errorHandler.buildDepError "MissingH"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."hakyll" or (errorHandler.buildDepError "hakyll"))
(hsPkgs."hakyllbars" or (errorHandler.buildDepError "hakyllbars"))
(hsPkgs."pandoc" or (errorHandler.buildDepError "pandoc"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
];
buildable = true;
};
};
tests = {
"test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."hakyllbars" or (errorHandler.buildDepError "hakyllbars"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit fc83d6b

Please sign in to comment.