Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Dec 4, 2023
1 parent 71b7264 commit def9f1b
Show file tree
Hide file tree
Showing 30 changed files with 1,164 additions and 4 deletions.
4 changes: 4 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3174,6 +3174,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"cairo-appbase" = import ./nix/cairo-appbase.nix;
"cairo-canvas" = import ./nix/cairo-canvas.nix;
"cairo-core" = import ./nix/cairo-core.nix;
"cairo-image" = import ./nix/cairo-image.nix;
"cake" = import ./nix/cake.nix;
"cake3" = import ./nix/cake3.nix;
"cakyrespa" = import ./nix/cakyrespa.nix;
Expand Down Expand Up @@ -6503,6 +6504,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"glazier-react-widget" = import ./nix/glazier-react-widget.nix;
"gli" = import ./nix/gli.nix;
"glib" = import ./nix/glib.nix;
"glib-stopgap" = import ./nix/glib-stopgap.nix;
"glicko" = import ./nix/glicko.nix;
"glider-nlp" = import ./nix/glider-nlp.nix;
"glintcollider" = import ./nix/glintcollider.nix;
Expand Down Expand Up @@ -14303,6 +14305,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"simple-bluetooth" = import ./nix/simple-bluetooth.nix;
"simple-c-value" = import ./nix/simple-c-value.nix;
"simple-cabal" = import ./nix/simple-cabal.nix;
"simple-cairo" = import ./nix/simple-cairo.nix;
"simple-cmd" = import ./nix/simple-cmd.nix;
"simple-cmd-args" = import ./nix/simple-cmd-args.nix;
"simple-conduit" = import ./nix/simple-conduit.nix;
Expand Down Expand Up @@ -14331,6 +14334,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"simple-neural-networks" = import ./nix/simple-neural-networks.nix;
"simple-nix" = import ./nix/simple-nix.nix;
"simple-observer" = import ./nix/simple-observer.nix;
"simple-pango" = import ./nix/simple-pango.nix;
"simple-parser" = import ./nix/simple-parser.nix;
"simple-pascal" = import ./nix/simple-pascal.nix;
"simple-pipe" = import ./nix/simple-pipe.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { optparse-applicative_ge_0_18 = false; };
package = {
specVersion = "1.24";
identifier = { name = "bm"; version = "0.2.0.0"; };
license = "MIT";
copyright = "Copyright (c) 2021-2023 Travis Cardwell";
maintainer = "Travis Cardwell <[email protected]>";
author = "Travis Cardwell <[email protected]>";
homepage = "https://github.com/ExtremaIS/bm-haskell#readme";
url = "";
synopsis = "open bookmarks and queries from the command line";
description = "This package provides a command-line utility that opens bookmarks and\nqueries. Please see the README on GitHub at\n<https://github.com/ExtremaIS/bm-haskell#readme>.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."dlist" or (errorHandler.buildDepError "dlist"))
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri"))
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
exes = {
"bm" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bm" or (errorHandler.buildDepError "bm"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."typed-process" or (errorHandler.buildDepError "typed-process"))
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml"))
] ++ (if flags.optparse-applicative_ge_0_18
then [
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."prettyprinter" or (errorHandler.buildDepError "prettyprinter"))
]
else [
(hsPkgs."ansi-wl-pprint" or (errorHandler.buildDepError "ansi-wl-pprint"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
]);
buildable = true;
};
};
tests = {
"bm-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bm" or (errorHandler.buildDepError "bm"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.12";
identifier = { name = "cairo-image"; version = "0.1.0.0"; };
license = "BSD-3-Clause";
copyright = "2021 Author name here";
maintainer = "[email protected]";
author = "Author name here";
homepage = "https://github.com/githubuser/cairo-image#readme";
url = "";
synopsis = "Image for Cairo";
description = "Please see the README on GitHub at <https://github.com/githubuser/cairo-image#readme>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."c-enum" or (errorHandler.buildDepError "c-enum"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
pkgconfig = [
(pkgconfPkgs."cairo" or (errorHandler.pkgConfDepError "cairo"))
];
buildable = true;
};
tests = {
"cairo-image-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."c-enum" or (errorHandler.buildDepError "c-enum"))
(hsPkgs."cairo-image" or (errorHandler.buildDepError "cairo-image"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
buildable = true;
};
"test-endian" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."c-enum" or (errorHandler.buildDepError "c-enum"))
(hsPkgs."cairo-image" or (errorHandler.buildDepError "cairo-image"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "chart-svg"; version = "0.5.2.0"; };
license = "BSD-3-Clause";
copyright = "Tony Day (c) 2017";
maintainer = "[email protected]";
author = "Tony Day";
homepage = "https://github.com/tonyday567/chart-svg#readme";
url = "";
synopsis = "Charting library targetting SVGs.";
description = "This package provides a charting library targetting SVG as the rendered output.\n\n== Usage\n\n>>> :set -XOverloadedLabels\n>>> :set -XOverloadedStrings\n>>> import Chart\n>>> import Optics.Core\n>>> let lines = [[Point 0.0 1.0, Point 1.0 1.0, Point 2.0 5.0],[Point 0.0 0.0, Point 2.8 3.0],[Point 0.5 4.0, Point 0.5 0]]\n>>> let styles = (\\c -> defaultLineStyle & #color .~ palette1 c & #size .~ 0.015) <$> [0..2]\n>>> let cs = zipWith (\\s x -> LineChart s [x]) styles lines\n>>> let lineExample = mempty & #charts .~ named \"line\" cs & #hudOptions .~ defaultHudOptions :: ChartOptions\n>>> writeChartOptions \"other/usage.svg\" lineExample\n\n![usage example](docs/other/usage.svg)\n\nSee \"Chart\" for a broad overview of concepts, and \"Chart.Examples\" for practical examples.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."Color" or (errorHandler.buildDepError "Color"))
(hsPkgs."adjunctions" or (errorHandler.buildDepError "adjunctions"))
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."cubicbezier" or (errorHandler.buildDepError "cubicbezier"))
(hsPkgs."flatparse" or (errorHandler.buildDepError "flatparse"))
(hsPkgs."foldl" or (errorHandler.buildDepError "foldl"))
(hsPkgs."formatn" or (errorHandler.buildDepError "formatn"))
(hsPkgs."markup-parse" or (errorHandler.buildDepError "markup-parse"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."numhask" or (errorHandler.buildDepError "numhask"))
(hsPkgs."numhask-array" or (errorHandler.buildDepError "numhask-array"))
(hsPkgs."numhask-space" or (errorHandler.buildDepError "numhask-space"))
(hsPkgs."optics-core" or (errorHandler.buildDepError "optics-core"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."string-interpolate" or (errorHandler.buildDepError "string-interpolate"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
];
buildable = true;
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "currycarbon"; version = "0.3.0.0"; };
license = "MIT";
copyright = "";
maintainer = "[email protected]";
author = "Clemens Schmid";
homepage = "https://github.com/nevrome/currycarbon";
url = "";
synopsis = "A package for simple, fast radiocarbon calibration";
description = "Radiocarbon calibration with the intercept method optimised for fast calibration of many dates.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."math-functions" or (errorHandler.buildDepError "math-functions"))
(hsPkgs."MonadRandom" or (errorHandler.buildDepError "MonadRandom"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
];
buildable = true;
};
exes = {
"currycarbon" = {
depends = [
(hsPkgs."currycarbon" or (errorHandler.buildDepError "currycarbon"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
];
buildable = true;
};
};
tests = {
"spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."currycarbon" or (errorHandler.buildDepError "currycarbon"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { cpphs = false; };
package = {
specVersion = "2.2";
identifier = { name = "filepath"; version = "1.4.200.1"; };
license = "BSD-3-Clause";
copyright = "Neil Mitchell 2005-2020, Julain Ospald 2021-2022";
maintainer = "Julian Ospald <[email protected]>";
author = "Neil Mitchell <[email protected]>";
homepage = "https://github.com/haskell/filepath/blob/master/README.md";
url = "";
synopsis = "Library for manipulating FilePaths in a cross platform way.";
description = "This package provides functionality for manipulating @FilePath@ values, and is shipped with <https://www.haskell.org/ghc/ GHC>. It provides two variants for filepaths:\n\n1. legacy filepaths: @type FilePath = String@\n\n2. operating system abstracted filepaths (@OsPath@): internally unpinned @ShortByteString@ (platform-dependent encoding)\n\nIt is recommended to use @OsPath@ when possible, because it is more correct.\n\nFor each variant there are three main modules:\n\n* \"System.FilePath.Posix\" / \"System.OsPath.Posix\" manipulates POSIX\\/Linux style @FilePath@ values (with @\\/@ as the path separator).\n\n* \"System.FilePath.Windows\" / \"System.OsPath.Windows\" manipulates Windows style @FilePath@ values (with either @\\\\@ or @\\/@ as the path separator, and deals with drives).\n\n* \"System.FilePath\" / \"System.OsPath\" for dealing with current platform-specific filepaths\n\n\"System.OsString\" is like \"System.OsPath\", but more general purpose. Refer to the documentation of\nthose modules for more information.\n\nAn introduction into the new API can be found in this\n<https://hasufell.github.io/posts/2022-06-29-fixing-haskell-filepaths.html blog post>.\nCode examples for the new API can be found <https://github.com/hasufell/filepath-examples here>.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell"))
];
build-tools = (pkgs.lib).optional (flags.cpphs) (hsPkgs.buildPackages.cpphs.components.exes.cpphs or (pkgs.buildPackages.cpphs or (errorHandler.buildToolDepError "cpphs:cpphs")));
buildable = true;
};
tests = {
"filepath-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
];
buildable = true;
};
"filepath-equivalent-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
];
buildable = true;
};
"bytestring-tests" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
];
buildable = true;
};
"abstract-filepath" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."quickcheck-classes-base" or (errorHandler.buildDepError "quickcheck-classes-base"))
];
buildable = true;
};
};
benchmarks = {
"bench-filepath" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."tasty-bench" or (errorHandler.buildDepError "tasty-bench"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit def9f1b

Please sign in to comment.