-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
IOHK
committed
Dec 5, 2024
1 parent
1e119d9
commit bb0ec34
Showing
63 changed files
with
2,222 additions
and
9 deletions.
There are no files selected for viewing
41 changes: 41 additions & 0 deletions
41
...lickHaskell-0.1.0-r1-3f3f97114628d66a5ac3cc9a7e308aee5e1c98ecf495b6743ff72bba07d515b5.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { release = false; dev = false; }; | ||
package = { | ||
specVersion = "3.4"; | ||
identifier = { name = "ClickHaskell"; version = "0.1.0"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "2023 Kovalev Dmitry"; | ||
maintainer = "Kovalev Dmitry"; | ||
author = "Kovalev Dmitry"; | ||
homepage = "https://kovalevdima.github.io/ClickHaskell/"; | ||
url = ""; | ||
synopsis = "ClickHouse driver"; | ||
description = "Small dependency footprint highlevel ClickHouse driver "; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."binary" or (errorHandler.buildDepError "binary")) | ||
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
(hsPkgs."network" or (errorHandler.buildDepError "network")) | ||
(hsPkgs."wide-word" or (errorHandler.buildDepError "wide-word")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
46 changes: 46 additions & 0 deletions
46
hackage/bytes-0.17.4-r0-b83d3d91c4574a11221df328d14b4e1e14a60096d0a6131153d5f757eb0dc7b5.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "bytes"; version = "0.17.4"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "Copyright (C) 2013-2015 Edward A. Kmett"; | ||
maintainer = "Edward A. Kmett <[email protected]>"; | ||
author = "Edward A. Kmett"; | ||
homepage = "https://github.com/ekmett/bytes"; | ||
url = ""; | ||
synopsis = "Sharing code for serialization between binary and cereal"; | ||
description = "Sharing code for serialization between binary and cereal."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."binary" or (errorHandler.buildDepError "binary")) | ||
(hsPkgs."binary-orphans" or (errorHandler.buildDepError "binary-orphans")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."cereal" or (errorHandler.buildDepError "cereal")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) | ||
(hsPkgs."transformers-compat" or (errorHandler.buildDepError "transformers-compat")) | ||
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) | ||
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific")) | ||
(hsPkgs."void" or (errorHandler.buildDepError "void")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
46 changes: 46 additions & 0 deletions
46
hackage/bytes-0.17.4-r1-27b117394065d8b8bd845c54dc0128f88f4b0c1a1242699f7603a80963ba1f4a.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "bytes"; version = "0.17.4"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "Copyright (C) 2013-2015 Edward A. Kmett"; | ||
maintainer = "Edward A. Kmett <[email protected]>"; | ||
author = "Edward A. Kmett"; | ||
homepage = "https://github.com/ekmett/bytes"; | ||
url = ""; | ||
synopsis = "Sharing code for serialization between binary and cereal"; | ||
description = "Sharing code for serialization between binary and cereal."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."binary" or (errorHandler.buildDepError "binary")) | ||
(hsPkgs."binary-orphans" or (errorHandler.buildDepError "binary-orphans")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."cereal" or (errorHandler.buildDepError "cereal")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) | ||
(hsPkgs."transformers-compat" or (errorHandler.buildDepError "transformers-compat")) | ||
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) | ||
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific")) | ||
(hsPkgs."void" or (errorHandler.buildDepError "void")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
37 changes: 37 additions & 0 deletions
37
...ge/charset-0.3.11-r0-0521970d253950ae712425a03c886bdc8a88a08dc0e095fa63250b0977328f03.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.10"; | ||
identifier = { name = "charset"; version = "0.3.11"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "(c) Edward Kmett 2010-2012"; | ||
maintainer = "[email protected]"; | ||
author = "Edward Kmett"; | ||
homepage = "http://github.com/ekmett/charset"; | ||
url = ""; | ||
synopsis = "Fast unicode character sets based on complemented PATRICIA tries"; | ||
description = "Fast unicode character sets based on complemented PATRICIA tries."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."array" or (errorHandler.buildDepError "array")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
40 changes: 40 additions & 0 deletions
40
...age/comonad-5.0.9-r0-f7bf55e62c24e9a9f523dc63e8b644a0eb5e1f6179366b16177ef68a5d4cdb15.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { | ||
containers = true; | ||
distributive = true; | ||
indexed-traversable = true; | ||
}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "comonad"; version = "5.0.9"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "Copyright (C) 2008-2014 Edward A. Kmett,\nCopyright (C) 2004-2008 Dave Menendez"; | ||
maintainer = "Edward A. Kmett <[email protected]>"; | ||
author = "Edward A. Kmett"; | ||
homepage = "http://github.com/ekmett/comonad/"; | ||
url = ""; | ||
synopsis = "Comonads"; | ||
description = "Comonads."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = (([ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged")) | ||
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) | ||
(hsPkgs."transformers-compat" or (errorHandler.buildDepError "transformers-compat")) | ||
] ++ pkgs.lib.optional (flags.containers) (hsPkgs."containers" or (errorHandler.buildDepError "containers"))) ++ pkgs.lib.optional (flags.distributive) (hsPkgs."distributive" or (errorHandler.buildDepError "distributive"))) ++ pkgs.lib.optional (flags.indexed-traversable) (hsPkgs."indexed-traversable" or (errorHandler.buildDepError "indexed-traversable")); | ||
buildable = true; | ||
}; | ||
}; | ||
} |
69 changes: 69 additions & 0 deletions
69
...ntlog2html-0.11.1-r1-5142ac71e1864d8b1d8ccfb0452a6d980ef2bbf0c51f2a2449a323075202ab4f.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "2.4"; | ||
identifier = { name = "eventlog2html"; version = "0.11.1"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "(C) 2010,2011,2015,2017,2018 Claude Heiland-Allen 2019 Matthew Pickering"; | ||
maintainer = "[email protected]"; | ||
author = "Matthew Pickering, David Binder, Claude Heiland-Allen"; | ||
homepage = "https://mpickering.github.io/eventlog2html"; | ||
url = ""; | ||
synopsis = "Visualise an eventlog"; | ||
description = "eventlog2html is a library for visualising eventlogs.\nAt the moment, the intended use is to visualise eventlogs\nwhich have heap profiling events, as a replacement to hp2ps\nand hp2pretty.\neventlog2html creates a static webpage which contains\na collection of different interactive charts for analysing\nheap usage. Trace events are displayed on the chart and\nthe charts can be zoomed, scrolled and filtered to give\na more exploratory feel to heap profile analysis."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."attoparsec" or (errorHandler.buildDepError "attoparsec")) | ||
(hsPkgs."array" or (errorHandler.buildDepError "array")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."blaze-html" or (errorHandler.buildDepError "blaze-html")) | ||
(hsPkgs."blaze-markup" or (errorHandler.buildDepError "blaze-markup")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."file-embed" or (errorHandler.buildDepError "file-embed")) | ||
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) | ||
(hsPkgs."ghc-events" or (errorHandler.buildDepError "ghc-events")) | ||
(hsPkgs."ghc-heap" or (errorHandler.buildDepError "ghc-heap")) | ||
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable")) | ||
(hsPkgs."hashtables" or (errorHandler.buildDepError "hashtables")) | ||
(hsPkgs."hvega" or (errorHandler.buildDepError "hvega")) | ||
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) | ||
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative")) | ||
(hsPkgs."raw-strings-qq" or (errorHandler.buildDepError "raw-strings-qq")) | ||
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups")) | ||
(hsPkgs."statistics-linreg" or (errorHandler.buildDepError "statistics-linreg")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."trie-simple" or (errorHandler.buildDepError "trie-simple")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
]; | ||
buildable = true; | ||
}; | ||
exes = { | ||
"eventlog2html" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."eventlog2html" or (errorHandler.buildDepError "eventlog2html")) | ||
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) | ||
(hsPkgs."githash" or (errorHandler.buildDepError "githash")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
38 changes: 38 additions & 0 deletions
38
...ra-releases-0.2.0-r0-a4abd965642628d5732a73f195fe232b25b75f55e1e8b36f8578dcefa4bb99d6.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "fedora-releases"; version = "0.2.0"; }; | ||
license = "GPL-3.0-only"; | ||
copyright = "2018-2022,2024 Jens Petersen"; | ||
maintainer = "Jens Petersen <[email protected]>"; | ||
author = "Jens Petersen <[email protected]>"; | ||
homepage = "https://github.com/juhp/fedora-releases"; | ||
url = ""; | ||
synopsis = "Library for Fedora release versions"; | ||
description = "This library provides the Branch and Release data types\nand various associated metadata functions for\nFedora releases (Fedora and EPEL) needed for\npackaging development and building.\nIt uses current release data from Fedora Bodhi."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."bodhi" or (errorHandler.buildDepError "bodhi")) | ||
(hsPkgs."cached-json-file" or (errorHandler.buildDepError "cached-json-file")) | ||
(hsPkgs."extra" or (errorHandler.buildDepError "extra")) | ||
(hsPkgs."safe" or (errorHandler.buildDepError "safe")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
58 changes: 58 additions & 0 deletions
58
...ib-9.8.4.20241130-r1-7f8d71e34b78c341e1e5c60817b6ad9615d3c87218959b989e72c398ec1f3572.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { threaded-rts = true; }; | ||
package = { | ||
specVersion = "3.0"; | ||
identifier = { name = "ghc-lib"; version = "9.8.4.20241130"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = ""; | ||
maintainer = "Digital Asset"; | ||
author = "The GHC Team and Digital Asset"; | ||
homepage = "https://github.com/digital-asset/ghc-lib"; | ||
url = ""; | ||
synopsis = "The GHC API, decoupled from GHC versions"; | ||
description = "A package equivalent to the @ghc@ package, but which can be loaded on many compiler versions."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) | ||
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions")) | ||
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec")) | ||
(hsPkgs."binary" or (errorHandler.buildDepError "binary")) | ||
(hsPkgs."directory" or (errorHandler.buildDepError "directory")) | ||
(hsPkgs."array" or (errorHandler.buildDepError "array")) | ||
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) | ||
(hsPkgs."pretty" or (errorHandler.buildDepError "pretty")) | ||
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) | ||
(hsPkgs."process" or (errorHandler.buildDepError "process")) | ||
(hsPkgs."stm" or (errorHandler.buildDepError "stm")) | ||
(hsPkgs."semaphore-compat" or (errorHandler.buildDepError "semaphore-compat")) | ||
(hsPkgs."rts" or (errorHandler.buildDepError "rts")) | ||
(hsPkgs."hpc" or (errorHandler.buildDepError "hpc")) | ||
(hsPkgs."ghc-lib-parser" or (errorHandler.buildDepError "ghc-lib-parser")) | ||
] ++ (if !system.isWindows | ||
then [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ] | ||
else [ (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 = true; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.