Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Nov 10, 2024
1 parent 8e907f7 commit 74f041b
Show file tree
Hide file tree
Showing 26 changed files with 1,095 additions and 3 deletions.
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 = "3.0";
identifier = { name = "MicroCabal"; version = "0.3.1.0"; };
license = "Apache-2.0";
copyright = "2024 Lennart Augustsson";
maintainer = "[email protected]";
author = "[email protected]";
homepage = "";
url = "";
synopsis = "A partial Cabal replacement";
description = "A portable subset of the Cabal functionality.";
buildType = "Simple";
};
components = {
exes = {
"mcabal" = {
depends = pkgs.lib.optionals (compiler.isGhc && true) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
] ++ pkgs.lib.optional (compiler.isMhs && true) (hsPkgs."base" or (errorHandler.buildDepError "base"));
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 = "3.0";
identifier = { name = "MicroCabal"; version = "0.3.1.1"; };
license = "Apache-2.0";
copyright = "2024 Lennart Augustsson";
maintainer = "[email protected]";
author = "[email protected]";
homepage = "";
url = "";
synopsis = "A partial Cabal replacement";
description = "A portable subset of the Cabal functionality.";
buildType = "Simple";
};
components = {
exes = {
"mcabal" = {
depends = pkgs.lib.optionals (compiler.isGhc && true) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
] ++ pkgs.lib.optional (compiler.isMhs && true) (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 = "3.0";
identifier = { name = "MicroHs"; version = "0.10.4.1"; };
license = "Apache-2.0";
copyright = "2023,2024 Lennart Augustsson";
maintainer = "[email protected]";
author = "[email protected]";
homepage = "";
url = "";
synopsis = "A small compiler for Haskell";
description = "A compiler for an extended subset of Haskell-2010.\nThe compiler translates to combinators and can compile itself.";
buildType = "Simple";
};
components = {
exes = {
"mhs" = {
depends = pkgs.lib.optionals (compiler.isGhc && true) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
(hsPkgs."haskeline" or (errorHandler.buildDepError "haskeline"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
] ++ pkgs.lib.optional (compiler.isMhs && true) (hsPkgs."base" or (errorHandler.buildDepError "base"));
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 = "3.0";
identifier = { name = "aws-spend-summary"; version = "0.2.0.0"; };
license = "GPL-2.0-only";
copyright = "(c) 2024 Daniel Rolls";
maintainer = "[email protected]";
author = "Daniel Rolls";
homepage = "";
url = "";
synopsis = "Extract recent daily AWS costs";
description = "Please see the README on GitHub at <https://github.com/danielrolls/aws-spend-summary>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."amazonka" or (errorHandler.buildDepError "amazonka"))
(hsPkgs."amazonka-core" or (errorHandler.buildDepError "amazonka-core"))
(hsPkgs."amazonka-s3" or (errorHandler.buildDepError "amazonka-s3"))
(hsPkgs."ansi-terminal" or (errorHandler.buildDepError "ansi-terminal"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."cassava" or (errorHandler.buildDepError "cassava"))
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types"))
(hsPkgs."lens" or (errorHandler.buildDepError "lens"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."timelens" or (errorHandler.buildDepError "timelens"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."zlib" or (errorHandler.buildDepError "zlib"))
];
buildable = true;
};
exes = {
"aws-spend-summary" = {
depends = [
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."aws-spend-summary" or (errorHandler.buildDepError "aws-spend-summary"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { install-examples = false; };
package = {
specVersion = "1.10";
identifier = { name = "cgi"; version = "3001.5.0.1"; };
license = "BSD-3-Clause";
copyright = "Bjorn Bringert, John Chee, Andy Gill, Anders Kaseorg,\nIan Lynagh, Erik Meijer, Sven Panne, Jeremy Shaw, Peter Simons";
maintainer = "John Chee <[email protected]>, Peter Simons <[email protected]>";
author = "Bjorn Bringert";
homepage = "https://github.com/cheecheeo/haskell-cgi";
url = "";
synopsis = "A library for writing CGI programs";
description = "This is a Haskell library for writing CGI programs.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."multipart" or (errorHandler.buildDepError "multipart"))
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri"))
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."xhtml" or (errorHandler.buildDepError "xhtml"))
];
buildable = true;
};
exes = {
"cookie.cgi" = {
depends = pkgs.lib.optionals (flags.install-examples) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi"))
(hsPkgs."xhtml" or (errorHandler.buildDepError "xhtml"))
];
buildable = if flags.install-examples then true else false;
};
"error.cgi" = {
depends = pkgs.lib.optionals (flags.install-examples) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi"))
];
buildable = if flags.install-examples then true else false;
};
"hello.cgi" = {
depends = pkgs.lib.optionals (flags.install-examples) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi"))
];
buildable = if flags.install-examples then true else false;
};
"printinput.cgi" = {
depends = pkgs.lib.optionals (flags.install-examples) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi"))
];
buildable = if flags.install-examples then true else false;
};
"redirect.cgi" = {
depends = pkgs.lib.optionals (flags.install-examples) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi"))
];
buildable = if flags.install-examples then true else false;
};
"showAllInputs.cgi" = {
depends = pkgs.lib.optionals (flags.install-examples) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi"))
];
buildable = if flags.install-examples then true else false;
};
"upload.cgi" = {
depends = pkgs.lib.optionals (flags.install-examples) [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi"))
(hsPkgs."xhtml" or (errorHandler.buildDepError "xhtml"))
];
buildable = if flags.install-examples then true else false;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "2.2";
identifier = { name = "crackNum"; version = "3.15"; };
license = "BSD-3-Clause";
copyright = "Levent Erkok";
maintainer = "[email protected]";
author = "Levent Erkok";
homepage = "http://github.com/LeventErkok/CrackNum";
url = "";
synopsis = "Crack various integer and floating-point data formats";
description = "Crack IEEE-754 float formats and arbitrary sized words and integers, showing the layout.\n\nFor details, please see: <http://github.com/LeventErkok/crackNum/>";
buildType = "Simple";
};
components = {
exes = {
"crackNum" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."libBF" or (errorHandler.buildDepError "libBF"))
(hsPkgs."ghc" or (errorHandler.buildDepError "ghc"))
(hsPkgs."sbv" or (errorHandler.buildDepError "sbv"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit 74f041b

Please sign in to comment.