Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Jan 23, 2024
1 parent bd2d081 commit fd52ea2
Show file tree
Hide file tree
Showing 63 changed files with 2,277 additions and 3 deletions.
6 changes: 6 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4266,6 +4266,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"daemons" = import ./nix/daemons.nix;
"dag" = import ./nix/dag.nix;
"dahdit" = import ./nix/dahdit.nix;
"dahdit-midi" = import ./nix/dahdit-midi.nix;
"dahdit-network" = import ./nix/dahdit-network.nix;
"dahdit-test" = import ./nix/dahdit-test.nix;
"daino" = import ./nix/daino.nix;
Expand Down Expand Up @@ -6362,6 +6363,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"ghcide" = import ./nix/ghcide.nix;
"ghcide-bench" = import ./nix/ghcide-bench.nix;
"ghcide-test-utils" = import ./nix/ghcide-test-utils.nix;
"ghcitui" = import ./nix/ghcitui.nix;
"ghcjs-ajax" = import ./nix/ghcjs-ajax.nix;
"ghcjs-base" = import ./nix/ghcjs-base.nix;
"ghcjs-base-stub" = import ./nix/ghcjs-base-stub.nix;
Expand Down Expand Up @@ -6536,6 +6538,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"glintcollider" = import ./nix/glintcollider.nix;
"glirc" = import ./nix/glirc.nix;
"gll" = import ./nix/gll.nix;
"glob-imports" = import ./nix/glob-imports.nix;
"glob-posix" = import ./nix/glob-posix.nix;
"global" = import ./nix/global.nix;
"global-config" = import ./nix/global-config.nix;
Expand Down Expand Up @@ -11108,6 +11111,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"nanoparsec" = import ./nix/nanoparsec.nix;
"nanopass" = import ./nix/nanopass.nix;
"nanospec" = import ./nix/nanospec.nix;
"nanotime" = import ./nix/nanotime.nix;
"nanovg" = import ./nix/nanovg.nix;
"nanovg-simple" = import ./nix/nanovg-simple.nix;
"nanq" = import ./nix/nanq.nix;
Expand Down Expand Up @@ -11515,7 +11519,9 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"ogma-language-copilot" = import ./nix/ogma-language-copilot.nix;
"ogma-language-fret-cs" = import ./nix/ogma-language-fret-cs.nix;
"ogma-language-fret-reqs" = import ./nix/ogma-language-fret-reqs.nix;
"ogma-language-jsonspec" = import ./nix/ogma-language-jsonspec.nix;
"ogma-language-smv" = import ./nix/ogma-language-smv.nix;
"ogma-spec" = import ./nix/ogma-spec.nix;
"ogmarkup" = import ./nix/ogmarkup.nix;
"ohloh-hs" = import ./nix/ohloh-hs.nix;
"oi" = import ./nix/oi.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "FiniteCategories"; version = "0.6.0.2"; };
license = "GPL-3.0-or-later";
copyright = "";
maintainer = "[email protected]";
author = "Guillaume Sabbagh";
homepage = "https://gitlab.utc.fr/gsabbagh/FiniteCategories";
url = "";
synopsis = "Finite categories and usual categorical constructions on them.";
description = "This package provides tools to create categories at the value level. This is different from the __Hask__ category where types are objects in a category with an infinite collection of objects and functions, here we construct categories where objects and arrows are arbitrary values so that we can change categories during runtime. Each category implements two functions following the category structure axioms : @ar@ which returns arrows between two objects of the category and @identity@ which returns the identity of an object. A FiniteCategory implements an additional function : @ob@ which returns objects of the category. Thanks to these functions, we can construct automatically all the usual constructions on the categories (limits and colimits, adjunctions, Yoneda embedding, etc.) Functors are different from usual @Functor@ typeclass, we store functors as mapping between objects and morphisms of two categories. This package is also different from the package @data-category@ because we can enumerate objects and arrows in a finite category. This allows us to construct limit, colimits, adjunctions, etc. automatically for arbitrary finite categories. On the other hand, we loose typecheck at compilation time which ensures that composition is sound in __Hask__, composition in our package might lead to an error raised during runtime. See the Readme file for installation help. See the package FiniteCategoriesGraphViz to visualize categories with graphviz.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."WeakSets" or (errorHandler.buildDepError "WeakSets"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
];
buildable = true;
};
tests = {
"FiniteCategories-test" = {
depends = [
(hsPkgs."FiniteCategories" or (errorHandler.buildDepError "FiniteCategories"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."WeakSets" or (errorHandler.buildDepError "WeakSets"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "dahdit-midi"; version = "0.5.1"; };
license = "BSD-3-Clause";
copyright = "(c) 2023 Eric Conlon";
maintainer = "[email protected]";
author = "Eric Conlon";
homepage = "https://github.com/ejconlon/dahdit#readme";
url = "";
synopsis = "MIDI and OSC parsing/printing with dahdit";
description = "Please see the README on GitHub at <https://github.com/ejconlon/dahdit#readme>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."dahdit" or (errorHandler.buildDepError "dahdit"))
(hsPkgs."data-sword" or (errorHandler.buildDepError "data-sword"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."nanotime" or (errorHandler.buildDepError "nanotime"))
(hsPkgs."newtype" or (errorHandler.buildDepError "newtype"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
tests = {
"dahdit-midi-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."dahdit" or (errorHandler.buildDepError "dahdit"))
(hsPkgs."dahdit-midi" or (errorHandler.buildDepError "dahdit-midi"))
(hsPkgs."dahdit-test" or (errorHandler.buildDepError "dahdit-test"))
(hsPkgs."data-sword" or (errorHandler.buildDepError "data-sword"))
(hsPkgs."daytripper" or (errorHandler.buildDepError "daytripper"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."falsify" or (errorHandler.buildDepError "falsify"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."nanotime" or (errorHandler.buildDepError "nanotime"))
(hsPkgs."newtype" or (errorHandler.buildDepError "newtype"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
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 = { os-string = false; };
package = {
specVersion = "2.2";
identifier = { name = "directory"; version = "1.3.8.2"; };
license = "BSD-3-Clause";
copyright = "";
maintainer = "[email protected]";
author = "";
homepage = "";
url = "";
synopsis = "Platform-agnostic library for filesystem operations";
description = "This library provides a basic set of operations for manipulating files and\ndirectories in a portable way.";
buildType = "Configure";
};
components = {
"library" = {
depends = ([
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
] ++ (if system.isWindows
then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ]
else [
(hsPkgs."unix" or (errorHandler.buildDepError "unix"))
])) ++ (if flags.os-string
then [
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."os-string" or (errorHandler.buildDepError "os-string"))
]
else [
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
]);
buildable = true;
};
tests = {
"test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
] ++ (if system.isWindows
then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ]
else [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]);
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "enum-subset-generate"; version = "0.1.0.3"; };
license = "BSD-3-Clause";
copyright = "2018 Georg Rudoy";
maintainer = "[email protected]";
author = "Georg Rudoy";
homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme";
url = "";
synopsis = "Generate an ADT being a subset of another ADT, and the corresponding mappings.";
description = "Please see the README on GitHub at <https://github.com/0xd34df00d/enum-subset-generate#readme>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."microlens" or (errorHandler.buildDepError "microlens"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
buildable = true;
};
tests = {
"enum-subset-generate-test" = {
depends = [
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."enum-subset-generate" or (errorHandler.buildDepError "enum-subset-generate"))
(hsPkgs."generic-random" or (errorHandler.buildDepError "generic-random"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."microlens" or (errorHandler.buildDepError "microlens"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.4";
identifier = { name = "ghcitui"; version = "0.1.0.0"; };
license = "BSD-3-Clause";
copyright = "Jordan 'Crystal' R AW";
maintainer = "[email protected]";
author = "Jordan 'Crystal' R AW";
homepage = "https://github.com/CrystalSplitter/ghcitui";
url = "";
synopsis = "A Terminal User Interface (TUI) for GHCi";
description = "A terminal user interface for GHCi debug mode.\n\nFeatures:\n\n* A source view window, with debug keybindings.\n\n* Live variable bindings.\n\n* Live loaded modules.\n\n* Visible trace history.\n\n* An GHCi session in the current context.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."array" or (errorHandler.buildDepError "array"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."errors" or (errorHandler.buildDepError "errors"))
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
(hsPkgs."ghcid" or (errorHandler.buildDepError "ghcid"))
(hsPkgs."regex-base" or (errorHandler.buildDepError "regex-base"))
(hsPkgs."regex-tdfa" or (errorHandler.buildDepError "regex-tdfa"))
(hsPkgs."string-interpolate" or (errorHandler.buildDepError "string-interpolate"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."utf8-string" or (errorHandler.buildDepError "utf8-string"))
];
buildable = true;
};
sublibs = {
"ghcitui-brick" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."brick" or (errorHandler.buildDepError "brick"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."errors" or (errorHandler.buildDepError "errors"))
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed"))
(hsPkgs."ghcitui" or (errorHandler.buildDepError "ghcitui"))
(hsPkgs."microlens" or (errorHandler.buildDepError "microlens"))
(hsPkgs."microlens-th" or (errorHandler.buildDepError "microlens-th"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."text-zipper" or (errorHandler.buildDepError "text-zipper"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."vty" or (errorHandler.buildDepError "vty"))
(hsPkgs."word-wrap" or (errorHandler.buildDepError "word-wrap"))
];
buildable = true;
};
};
exes = {
"ghcitui" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ghcitui".components.sublibs.ghcitui-brick or (errorHandler.buildDepError "ghcitui:ghcitui-brick"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."ghcitui" or (errorHandler.buildDepError "ghcitui"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
tests = {
"spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ghcitui" or (errorHandler.buildDepError "ghcitui"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit fd52ea2

Please sign in to comment.