Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Nov 26, 2023
1 parent 3a25a9c commit 81ddfd2
Show file tree
Hide file tree
Showing 38 changed files with 1,395 additions and 2 deletions.
2 changes: 2 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4871,6 +4871,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"docusign-example" = import ./nix/docusign-example.nix;
"docvim" = import ./nix/docvim.nix;
"doi" = import ./nix/doi.nix;
"dojang" = import ./nix/dojang.nix;
"doldol" = import ./nix/doldol.nix;
"dollaridoos" = import ./nix/dollaridoos.nix;
"dom-events" = import ./nix/dom-events.nix;
Expand Down Expand Up @@ -11654,6 +11655,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"ory-hydra-client" = import ./nix/ory-hydra-client.nix;
"ory-kratos" = import ./nix/ory-kratos.nix;
"os-release" = import ./nix/os-release.nix;
"os-string" = import ./nix/os-string.nix;
"osc" = import ./nix/osc.nix;
"oscpacking" = import ./nix/oscpacking.nix;
"osdkeys" = import ./nix/osdkeys.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "MicroHs"; version = "0.8.2.0"; };
license = "Apache-2.0";
copyright = "2023 Lennart Augustsson";
maintainer = "[email protected]";
author = "[email protected]";
homepage = "";
url = "";
synopsis = "A compiler for a subset of Haskell";
description = "A compiler for a subset of Haskell.\nThe compiler translates to combinators and can compile itself.";
buildType = "Simple";
};
components = {
exes = {
"mhs" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "MicroHs"; version = "0.8.2.1"; };
license = "Apache-2.0";
copyright = "2023 Lennart Augustsson";
maintainer = "[email protected]";
author = "[email protected]";
homepage = "";
url = "";
synopsis = "A compiler for a subset of Haskell";
description = "A compiler for a subset of Haskell.\nThe compiler translates to combinators and can compile itself.";
buildType = "Simple";
};
components = {
exes = {
"mhs" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "MicroHs"; version = "0.8.2.2"; };
license = "Apache-2.0";
copyright = "2023 Lennart Augustsson";
maintainer = "[email protected]";
author = "[email protected]";
homepage = "";
url = "";
synopsis = "A compiler for a subset of Haskell";
description = "A compiler for a subset of Haskell.\nThe compiler translates to combinators and can compile itself.";
buildType = "Simple";
};
components = {
exes = {
"mhs" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "breakpoint"; version = "0.1.3.0"; };
license = "MIT";
copyright = "";
maintainer = "[email protected]";
author = "Aaron Allen";
homepage = "";
url = "";
synopsis = "Set breakpoints using a GHC plugin";
description = "A plugin that allows you to set breakpoints for debugging purposes.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."ghc" or (errorHandler.buildDepError "ghc"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."haskeline" or (errorHandler.buildDepError "haskeline"))
(hsPkgs."pretty-simple" or (errorHandler.buildDepError "pretty-simple"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
(hsPkgs."ansi-terminal" or (errorHandler.buildDepError "ansi-terminal"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
];
buildable = true;
};
tests = {
"spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."breakpoint" or (errorHandler.buildDepError "breakpoint"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.22";
identifier = { name = "copr-api"; version = "0.2.0"; };
license = "GPL-3.0-only";
copyright = "2020-2023 Jens Petersen";
maintainer = "Jens Petersen <[email protected]>";
author = "Jens Petersen <[email protected]>";
homepage = "https://github.com/juhp/copr-api-hs";
url = "";
synopsis = "Copr API client libary";
description = "Fedora Copr buildsystem client api library";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."http-query" or (errorHandler.buildDepError "http-query"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { static = false; };
package = {
specVersion = "2.2";
identifier = { name = "dojang"; version = "0.1.0"; };
license = "GPL-3.0-or-later";
copyright = "© 2023 Hong Minhee";
maintainer = "Hong Minhee <[email protected]>";
author = "Hong Minhee <[email protected]>";
homepage = "https://dojang.dev/";
url = "";
synopsis = "A cross-platform dotfiles manager";
description = "See also the README.md file.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."Diff" or (errorHandler.buildDepError "Diff"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."filepattern" or (errorHandler.buildDepError "filepattern"))
(hsPkgs."fortytwo" or (errorHandler.buildDepError "fortytwo"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."parser-combinators" or (errorHandler.buildDepError "parser-combinators"))
(hsPkgs."pretty-terminal" or (errorHandler.buildDepError "pretty-terminal"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."semver" or (errorHandler.buildDepError "semver"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."text-show" or (errorHandler.buildDepError "text-show"))
(hsPkgs."toml-parser" or (errorHandler.buildDepError "toml-parser"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
exes = {
"dojang" = {
depends = [
(hsPkgs."Diff" or (errorHandler.buildDepError "Diff"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
(hsPkgs."code-page" or (errorHandler.buildDepError "code-page"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."dojang" or (errorHandler.buildDepError "dojang"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."pretty-terminal" or (errorHandler.buildDepError "pretty-terminal"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."text-show" or (errorHandler.buildDepError "text-show"))
(hsPkgs."toml-parser" or (errorHandler.buildDepError "toml-parser"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
};
tests = {
"spec" = {
depends = [
(hsPkgs."Diff" or (errorHandler.buildDepError "Diff"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."dojang" or (errorHandler.buildDepError "dojang"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."hedgehog" or (errorHandler.buildDepError "hedgehog"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."hspec-discover" or (errorHandler.buildDepError "hspec-discover"))
(hsPkgs."hspec-expectations-pretty-diff" or (errorHandler.buildDepError "hspec-expectations-pretty-diff"))
(hsPkgs."hspec-hedgehog" or (errorHandler.buildDepError "hspec-hedgehog"))
(hsPkgs."hspec-junit-formatter" or (errorHandler.buildDepError "hspec-junit-formatter"))
(hsPkgs."hspec-megaparsec" or (errorHandler.buildDepError "hspec-megaparsec"))
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec"))
(hsPkgs."monad-logger" or (errorHandler.buildDepError "monad-logger"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."pretty-terminal" or (errorHandler.buildDepError "pretty-terminal"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."regex-tdfa" or (errorHandler.buildDepError "regex-tdfa"))
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."text-show" or (errorHandler.buildDepError "text-show"))
(hsPkgs."toml-parser" or (errorHandler.buildDepError "toml-parser"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 81ddfd2

Please sign in to comment.