Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Oct 20, 2023
1 parent 855a40f commit 041f080
Show file tree
Hide file tree
Showing 23 changed files with 706 additions and 1 deletion.
2 changes: 2 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15636,6 +15636,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"thank-you-stars" = import ./nix/thank-you-stars.nix;
"the-snip" = import ./nix/the-snip.nix;
"theatre" = import ./nix/theatre.nix;
"theatre-dev" = import ./nix/theatre-dev.nix;
"themoviedb" = import ./nix/themoviedb.nix;
"themplate" = import ./nix/themplate.nix;
"thentos-cookie-session" = import ./nix/thentos-cookie-session.nix;
Expand Down Expand Up @@ -16214,6 +16215,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"ukrainian-phonetics-basic-array-bytestring" = import ./nix/ukrainian-phonetics-basic-array-bytestring.nix;
"ukrainian-phonetics-common" = import ./nix/ukrainian-phonetics-common.nix;
"ulid" = import ./nix/ulid.nix;
"ulid-tight" = import ./nix/ulid-tight.nix;
"una" = import ./nix/una.nix;
"unac-bindings" = import ./nix/unac-bindings.nix;
"unagi-bloomfilter" = import ./nix/unagi-bloomfilter.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "base32"; version = "0.4"; };
license = "BSD-3-Clause";
copyright = "(c) 2020-2023 Emily Pillmore";
maintainer = "emilypi@cohomolo.gy";
author = "Emily Pillmore";
homepage = "https://github.com/emilypi/base32";
url = "";
synopsis = "Fast RFC 4648-compliant Base32 encoding";
description = "RFC 4648-compliant Base32 encodings and decodings.\nThis library provides performant encoding and decoding primitives, as well as support for textual values.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."text-short" or (errorHandler.buildDepError "text-short"))
];
buildable = true;
};
tests = {
"tasty" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."base32" or (errorHandler.buildDepError "base32"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."memory" or (errorHandler.buildDepError "memory"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."random-bytestring" or (errorHandler.buildDepError "random-bytestring"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."text-short" or (errorHandler.buildDepError "text-short"))
];
buildable = true;
};
};
benchmarks = {
"bench" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."base32" or (errorHandler.buildDepError "base32"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."criterion" or (errorHandler.buildDepError "criterion"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."memory" or (errorHandler.buildDepError "memory"))
(hsPkgs."random-bytestring" or (errorHandler.buildDepError "random-bytestring"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.0";
identifier = { name = "fbrnch"; version = "1.3.3"; };
license = "GPL-2.0-only";
copyright = "2019-2023 Jens Petersen";
maintainer = "Jens Petersen <petersen@fedoraproject.org>";
author = "Jens Petersen <petersen@redhat.com>";
homepage = "https://github.com/juhp/fbrnch";
url = "";
synopsis = "Fedora packager tool to build package branches";
description = "fbrnch (fedora branch) is a convenient packaging tool for\nFedora Packagers, with integration for Bugzilla, Koji, and Bodhi.\n\nFeatures include:\n\n- merging and building a package across release branches\n\n- automated parallel builds of sets of packages in dependency order\n\n- creating, updating and listing one's package reviews\n\n- requesting repos for new approved packages and branch requests\n\n- import srpms from package reviews\n\n- progressive copr builds\n\nand many more commands.";
buildType = "Simple";
};
components = {
exes = {
"fbrnch" = {
depends = ([
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bodhi" or (errorHandler.buildDepError "bodhi"))
(hsPkgs."bugzilla-redhat" or (errorHandler.buildDepError "bugzilla-redhat"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."config-ini" or (errorHandler.buildDepError "config-ini"))
(hsPkgs."copr-api" or (errorHandler.buildDepError "copr-api"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."email-validate" or (errorHandler.buildDepError "email-validate"))
(hsPkgs."extra" or (errorHandler.buildDepError "extra"))
(hsPkgs."fedora-dists" or (errorHandler.buildDepError "fedora-dists"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit"))
(hsPkgs."http-directory" or (errorHandler.buildDepError "http-directory"))
(hsPkgs."http-query" or (errorHandler.buildDepError "http-query"))
(hsPkgs."koji" or (errorHandler.buildDepError "koji"))
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri"))
(hsPkgs."pagure" or (errorHandler.buildDepError "pagure"))
(hsPkgs."pretty-terminal" or (errorHandler.buildDepError "pretty-terminal"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."rpmbuild-order" or (errorHandler.buildDepError "rpmbuild-order"))
(hsPkgs."rpm-nvr" or (errorHandler.buildDepError "rpm-nvr"))
(hsPkgs."simple-cmd" or (errorHandler.buildDepError "simple-cmd"))
(hsPkgs."simple-cmd-args" or (errorHandler.buildDepError "simple-cmd-args"))
(hsPkgs."simple-prompt" or (errorHandler.buildDepError "simple-prompt"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."typed-process" or (errorHandler.buildDepError "typed-process"))
(hsPkgs."utf8-string" or (errorHandler.buildDepError "utf8-string"))
(hsPkgs."unix" or (errorHandler.buildDepError "unix"))
(hsPkgs."xdg-basedir" or (errorHandler.buildDepError "xdg-basedir"))
] ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).lt "8.3") (hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups"))) ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).lt "8.4") (hsPkgs."http-common" or (errorHandler.buildDepError "http-common"));
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.4";
identifier = { name = "fractionizer"; version = "0.17.0.0"; };
license = "MIT";
copyright = "Oleksandr Zhabenko";
maintainer = "oleksandr.zhabenko@yahoo.com";
author = "Oleksandr-Zhabenko";
homepage = "";
url = "";
synopsis = "Numbers in the range [0.005, 1] as a sum of 2, 3, 4 or 5 unit fractions of special types.";
description = "Inspired by the ancient Egyptian mathematics. See the ideas description and formulation in the [related draft paper.](https://www.academia.edu/100514742/Fraction_approximation_for_the_range_of_0_005_1_related_to_music_melody_composing_and_using_Haskell_and_unit_fractions)";
buildType = "Simple";
};
components = {
"library" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "jacobi-theta"; version = "0.2.2.0"; };
license = "BSD-3-Clause";
copyright = "2023 Stéphane Laurent";
maintainer = "laurent_step@outlook.fr";
author = "Stéphane Laurent";
homepage = "https://github.com/stla/jacobi-theta#readme";
url = "";
synopsis = "Jacobi Theta Functions";
description = "Evaluation of the Jacobi theta functions.";
buildType = "Simple";
};
components = {
"library" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
tests = {
"unit-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."jacobi-theta" or (errorHandler.buildDepError "jacobi-theta"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "jacobi-theta"; version = "0.2.2.1"; };
license = "BSD-3-Clause";
copyright = "2023 Stéphane Laurent";
maintainer = "laurent_step@outlook.fr";
author = "Stéphane Laurent";
homepage = "https://github.com/stla/jacobi-theta#readme";
url = "";
synopsis = "Jacobi Theta Functions";
description = "Evaluation of the Jacobi theta functions.";
buildType = "Simple";
};
components = {
"library" = {
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ];
buildable = true;
};
tests = {
"unit-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."jacobi-theta" or (errorHandler.buildDepError "jacobi-theta"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "monoid-subclasses"; version = "1.2.4.1"; };
license = "BSD-3-Clause";
copyright = "(c) 2013-2023 Mario Blažević";
maintainer = "Mario Blažević <blamario@protonmail.com>";
author = "Mario Blažević";
homepage = "https://github.com/blamario/monoid-subclasses/";
url = "";
synopsis = "Subclasses of Monoid";
description = "A hierarchy of subclasses of 'Monoid' together with their instances for all data structures from base, containers, and\ntext packages.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."primes" or (errorHandler.buildDepError "primes"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."commutative-semigroups" or (errorHandler.buildDepError "commutative-semigroups"))
];
buildable = true;
};
tests = {
"Main" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."primes" or (errorHandler.buildDepError "primes"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
(hsPkgs."monoid-subclasses" or (errorHandler.buildDepError "monoid-subclasses"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 041f080

Please sign in to comment.