Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
IOHK committed Oct 28, 2024
1 parent d92c069 commit bafe1b0
Show file tree
Hide file tree
Showing 55 changed files with 2,182 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,115 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {
debug = false;
debug-serialisation = false;
debug-parsing = false;
enable-cluster-counting = false;
optimise-heavily = false;
};
package = {
specVersion = "2.4";
identifier = { name = "Agda"; version = "2.7.0.1"; };
license = "MIT";
copyright = "(c) 2005-2024 The Agda Team.";
maintainer = "The Agda Team";
author = "The Agda Team, see https://agda.readthedocs.io/en/latest/team.html";
homepage = "https://wiki.portal.chalmers.se/agda/";
url = "";
synopsis = "A dependently typed functional programming language and proof assistant";
description = "Agda is a dependently typed functional programming language: It has\ninductive families, which are similar to Haskell's GADTs, but they\ncan be indexed by values and not just types. It also has\nparameterised modules, mixfix operators, Unicode characters, and an\ninteractive Emacs interface (the type checker can assist in the\ndevelopment of your code).\n\nAgda is also a proof assistant: It is an interactive system for\nwriting and checking proofs. Agda is based on intuitionistic type\ntheory, a foundational system for constructive mathematics developed\nby the Swedish logician Per Martin-Löf. It has many\nsimilarities with other proof assistants based on dependent types,\nsuch as Coq, Idris, Lean and NuPRL.\n\nThis package includes both a command-line program (agda) and an\nEmacs mode. If you want to use the Emacs mode you can set it up by\nrunning @agda-mode setup@ (see the README).";
buildType = "Custom";
setup-depends = [
(hsPkgs.pkgsBuildBuild.base or (pkgs.pkgsBuildBuild.base or (errorHandler.setupDepError "base")))
(hsPkgs.pkgsBuildBuild.Cabal or (pkgs.pkgsBuildBuild.Cabal or (errorHandler.setupDepError "Cabal")))
(hsPkgs.pkgsBuildBuild.directory or (pkgs.pkgsBuildBuild.directory or (errorHandler.setupDepError "directory")))
(hsPkgs.pkgsBuildBuild.filepath or (pkgs.pkgsBuildBuild.filepath or (errorHandler.setupDepError "filepath")))
(hsPkgs.pkgsBuildBuild.process or (pkgs.pkgsBuildBuild.process or (errorHandler.setupDepError "process")))
];
};
components = {
"library" = {
depends = ([
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."ansi-terminal" or (errorHandler.buildDepError "ansi-terminal"))
(hsPkgs."array" or (errorHandler.buildDepError "array"))
(hsPkgs."async" or (errorHandler.buildDepError "async"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."binary" or (errorHandler.buildDepError "binary"))
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html"))
(hsPkgs."boxes" or (errorHandler.buildDepError "boxes"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."data-hash" or (errorHandler.buildDepError "data-hash"))
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."dlist" or (errorHandler.buildDepError "dlist"))
(hsPkgs."edit-distance" or (errorHandler.buildDepError "edit-distance"))
(hsPkgs."equivalence" or (errorHandler.buildDepError "equivalence"))
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."ghc-compact" or (errorHandler.buildDepError "ghc-compact"))
(hsPkgs."gitrev" or (errorHandler.buildDepError "gitrev"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."haskeline" or (errorHandler.buildDepError "haskeline"))
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."murmur-hash" or (errorHandler.buildDepError "murmur-hash"))
(hsPkgs."parallel" or (errorHandler.buildDepError "parallel"))
(hsPkgs."peano" or (errorHandler.buildDepError "peano"))
(hsPkgs."pqueue" or (errorHandler.buildDepError "pqueue"))
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
(hsPkgs."regex-tdfa" or (errorHandler.buildDepError "regex-tdfa"))
(hsPkgs."split" or (errorHandler.buildDepError "split"))
(hsPkgs."stm" or (errorHandler.buildDepError "stm"))
(hsPkgs."STMonadTrans" or (errorHandler.buildDepError "STMonadTrans"))
(hsPkgs."strict" or (errorHandler.buildDepError "strict"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
(hsPkgs."uri-encode" or (errorHandler.buildDepError "uri-encode"))
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
(hsPkgs."vector-hashtables" or (errorHandler.buildDepError "vector-hashtables"))
(hsPkgs."zlib" or (errorHandler.buildDepError "zlib"))
] ++ pkgs.lib.optional (flags.enable-cluster-counting) (hsPkgs."text-icu" or (errorHandler.buildDepError "text-icu"))) ++ pkgs.lib.optional (system.isWindows) (hsPkgs."Win32" or (errorHandler.buildDepError "Win32"));
build-tools = [
(hsPkgs.pkgsBuildBuild.alex.components.exes.alex or (pkgs.pkgsBuildBuild.alex or (errorHandler.buildToolDepError "alex:alex")))
(hsPkgs.pkgsBuildBuild.happy.components.exes.happy or (pkgs.pkgsBuildBuild.happy or (errorHandler.buildToolDepError "happy:happy")))
];
buildable = (if compiler.isGhc && compiler.version.eq "8.6.1"
then false
else true) && (if system.isWindows && (compiler.isGhc && compiler.version.eq "8.6.3")
then false
else true);
};
exes = {
"agda" = {
depends = [
(hsPkgs."Agda" or (errorHandler.buildDepError "Agda"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
];
buildable = true;
};
"agda-mode" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."process" or (errorHandler.buildDepError "process"))
];
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 = "cabal2spec"; version = "2.7.1"; };
license = "GPL-3.0-only";
copyright = "";
maintainer = "[email protected]";
author = "Peter Simons, Bryan O'Sullivan, Jens Petersen";
homepage = "https://github.com/peti/cabal2spec";
url = "";
synopsis = "Convert Cabal files into rpm spec files";
description = "Convert\nCabal files into a\n<http://ftp.rpm.org/max-rpm/s1-rpm-build-creating-spec-file.html spec file>\nsuitable for building the package with the RPM package manager. This\ntool primarily targets the <http://www.suse.com/ SUSE> and\n<http://www.opensuse.org openSUSE> familiy of distributions. Support\nfor other RPM-based distributions is currently not available. Check\nout <http://hackage.haskell.org/package/cabal-rpm cabal-rpm> if you\nneed this.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
];
buildable = true;
};
exes = {
"cabal2spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal"))
(hsPkgs."cabal2spec" or (errorHandler.buildDepError "cabal2spec"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
];
buildable = true;
};
};
tests = {
"regression-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal"))
(hsPkgs."cabal2spec" or (errorHandler.buildDepError "cabal2spec"))
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { tests = false; };
package = {
specVersion = "1.10";
identifier = { name = "data-reify"; version = "0.6.4"; };
license = "BSD-3-Clause";
copyright = "(c) 2009 Andy Gill";
maintainer = "Andy Gill <[email protected]>";
author = "Andy Gill";
homepage = "http://ku-fpg.github.io/software/data-reify/";
url = "";
synopsis = "Reify a recursive data structure into an explicit graph.";
description = "'data-reify' provided the ability to turn recursive structures into explicit graphs.\nMany (implicitly or explicitly) recursive data structure can be given this ability, via\na type class instance. This gives an alternative to using 'Ref' for observable sharing.\n\nObservable sharing in general is unsafe, so we use the IO monad to bound this effect,\nbut can be used safely even with 'unsafePerformIO' if some simple conditions are met.\nTypically this package will be used to tie the knot with DSL's that depend of\nobservable sharing, like Lava.\n\nProviding an instance for 'MuRef' is the mechanism for allowing a structure to be\nreified into a graph, and several examples of this are provided.\n\n&#169; 2009 Andy Gill; BSD3 license.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
];
buildable = true;
};
exes = {
"example1" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"simplify" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"data-reify-test1" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"data-reify-test2" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"data-reify-test3" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"data-reify-test4" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"data-reify-test5" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"data-reify-test6" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
"data-reify-test7" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
];
buildable = if !flags.tests then false else true;
};
};
tests = {
"spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."data-reify" or (errorHandler.buildDepError "data-reify"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
];
build-tools = [
(hsPkgs.pkgsBuildBuild.hspec-discover.components.exes.hspec-discover or (pkgs.pkgsBuildBuild.hspec-discover or (errorHandler.buildToolDepError "hspec-discover:hspec-discover")))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "elynx"; version = "0.8.0.0"; };
license = "GPL-3.0-or-later";
copyright = "2021 Dominik Schrempf";
maintainer = "[email protected]";
author = "Dominik Schrempf";
homepage = "https://github.com/dschrempf/elynx#readme";
url = "";
synopsis = "Validate and (optionally) redo ELynx analyses";
description = "Please see the README on GitHub at <https://github.com/dschrempf/elynx>.";
buildType = "Simple";
};
components = {
exes = {
"elynx" = {
depends = [
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."elynx-tools" or (errorHandler.buildDepError "elynx-tools"))
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative"))
(hsPkgs."slynx" or (errorHandler.buildDepError "slynx"))
(hsPkgs."tlynx" or (errorHandler.buildDepError "tlynx"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit bafe1b0

Please sign in to comment.