-
Notifications
You must be signed in to change notification settings - Fork 17
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
Nov 5, 2024
1 parent
3f9db98
commit bf178f8
Showing
25 changed files
with
1,003 additions
and
6 deletions.
There are no files selected for viewing
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
40 changes: 40 additions & 0 deletions
40
...codec-nix-0.0.1.5-r0-9f1c016ca6ad493cdf2a50f21f26bf4dbac9f0ff0b518f42d71eb7598d4eb508.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 = {}; | ||
package = { | ||
specVersion = "1.12"; | ||
identifier = { name = "autodocodec-nix"; version = "0.0.1.5"; }; | ||
license = "MIT"; | ||
copyright = "2024 Tom Sydney Kerckhove"; | ||
maintainer = "syd@cs-syd.eu"; | ||
author = "Tom Sydney Kerckhove"; | ||
homepage = "https://github.com/NorfairKing/autodocodec#readme"; | ||
url = ""; | ||
synopsis = "Autodocodec interpreters for nix"; | ||
description = ""; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."autodocodec" or (errorHandler.buildDepError "autodocodec")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
53 changes: 53 additions & 0 deletions
53
...colonnade-1.2.0.2-r7-1e8fcaebe250feb29a9153e92d2727aa61612c0fa6146859a604d49337d86e10.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,53 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "colonnade"; version = "1.2.0.2"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "2016 Andrew Martin"; | ||
maintainer = "andrew.thaddeus@gmail.com"; | ||
author = "Andrew Martin"; | ||
homepage = "https://github.com/andrewthad/colonnade#readme"; | ||
url = ""; | ||
synopsis = "Generic types and functions for columnar encoding and decoding"; | ||
description = "The `colonnade` package provides a way to talk about\ncolumnar encodings and decodings of data. This package provides\nvery general types and does not provide a way for the end-user\nto actually apply the columnar encodings they build to data.\nMost users will also want to one a companion packages\nthat provides (1) a content type and (2) functions for feeding\ndata into a columnar encoding:\n\n* <https://hackage.haskell.org/package/lucid-colonnade lucid-colonnade> for `lucid` html tables\n\n* <https://hackage.haskell.org/package/blaze-colonnade blaze-colonnade> for `blaze` html tables\n\n* <https://hackage.haskell.org/package/reflex-dom-colonnade reflex-dom-colonnade> for reactive `reflex-dom` tables\n\n* <https://hackage.haskell.org/package/yesod-colonnade yesod-colonnade> for `yesod` widgets\n\n* <http://hackage.haskell.org/package/siphon siphon> for encoding and decoding CSVs"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."contravariant" or (errorHandler.buildDepError "contravariant")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."profunctors" or (errorHandler.buildDepError "profunctors")) | ||
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."colonnade" or (errorHandler.buildDepError "colonnade")) | ||
(hsPkgs."doctest" or (errorHandler.buildDepError "doctest")) | ||
(hsPkgs."semigroupoids" or (errorHandler.buildDepError "semigroupoids")) | ||
(hsPkgs."ansi-wl-pprint" or (errorHandler.buildDepError "ansi-wl-pprint")) | ||
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck")) | ||
(hsPkgs."fast-logger" or (errorHandler.buildDepError "fast-logger")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
58 changes: 58 additions & 0 deletions
58
...b-9.10.1.20240511-r4-511dd873f57795f3b8469ce4db3f738b117c8f2b090e781ccc555b9c6e5993d1.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.10.1.20240511"; }; | ||
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; | ||
}; | ||
}; | ||
} |
58 changes: 58 additions & 0 deletions
58
...b-9.10.1.20241103-r2-6fc1265d16620e85e3638c3b55f465bdd5321837903f8e1f2a228d0b5e0d66d9.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.10.1.20241103"; }; | ||
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; | ||
}; | ||
}; | ||
} |
55 changes: 55 additions & 0 deletions
55
...r-9.10.1.20240511-r4-d7113890983244052332b81b55a95c84a709487bceca37a5f60bbc4d812d3894.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,55 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { threaded-rts = true; }; | ||
package = { | ||
specVersion = "3.0"; | ||
identifier = { name = "ghc-lib-parser"; version = "9.10.1.20240511"; }; | ||
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")) | ||
] ++ (if !system.isWindows | ||
then [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ] | ||
else [ | ||
(hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) | ||
])) ++ pkgs.lib.optional (compiler.isGhc && compiler.version.ge "9.10") (hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal")); | ||
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; | ||
}; | ||
}; | ||
} |
55 changes: 55 additions & 0 deletions
55
...r-9.10.1.20241103-r2-351e375726f4e1ffd58a845760dc0f938e4a5c2431036eaa3add6db3761e830b.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,55 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { threaded-rts = true; }; | ||
package = { | ||
specVersion = "3.0"; | ||
identifier = { name = "ghc-lib-parser"; version = "9.10.1.20241103"; }; | ||
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")) | ||
] ++ (if !system.isWindows | ||
then [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ] | ||
else [ | ||
(hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) | ||
])) ++ pkgs.lib.optional (compiler.isGhc && compiler.version.ge "9.10") (hsPkgs."ghc-internal" or (errorHandler.buildDepError "ghc-internal")); | ||
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.