-
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
Sep 19, 2024
1 parent
1d222a4
commit 8f70a72
Showing
53 changed files
with
2,109 additions
and
16 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
45 changes: 45 additions & 0 deletions
45
...ms-canvas-1.4.1.2-r2-1767363dbac9128537936f2b34cf0d5cffcada33bda5dc8d68aef10b4466abc2.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,45 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "diagrams-canvas"; version = "1.4.1.2"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = ""; | ||
maintainer = "[email protected]"; | ||
author = "Jeffrey Rosenbluth, Ryan Yates, Brent Yorgey, Andy Gill, Daniel Bergey"; | ||
homepage = "https://diagrams.github.io/"; | ||
url = ""; | ||
synopsis = "HTML5 canvas backend for diagrams drawing EDSL"; | ||
description = "This package provides a modular backend for rendering\ndiagrams created with the diagrams EDSL using an\nHTML5 canvas."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) | ||
(hsPkgs."NumInstances" or (errorHandler.buildDepError "NumInstances")) | ||
(hsPkgs."diagrams-core" or (errorHandler.buildDepError "diagrams-core")) | ||
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib")) | ||
(hsPkgs."cmdargs" or (errorHandler.buildDepError "cmdargs")) | ||
(hsPkgs."blank-canvas" or (errorHandler.buildDepError "blank-canvas")) | ||
(hsPkgs."lens" or (errorHandler.buildDepError "lens")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class")) | ||
(hsPkgs."statestack" or (errorHandler.buildDepError "statestack")) | ||
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
31 changes: 31 additions & 0 deletions
31
...-alacarte-1.0.0.4-r0-d67fb041a60c4f1a75962de4209a16bca6a866c3e6cf52abd0bca08cf5541004.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,31 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.12"; | ||
identifier = { name = "free-alacarte"; version = "1.0.0.4"; }; | ||
license = "LGPL-3.0-only"; | ||
copyright = ""; | ||
maintainer = "Josep Bigorra <[email protected]>"; | ||
author = ""; | ||
homepage = "https://github.com/jjba23/free-alacarte"; | ||
url = ""; | ||
synopsis = "Free monads based on intuitions from the Data types à la Carte. "; | ||
description = "Free monads based on intuitions from the Data types à la Carte paper. Combine functors and make embedded DSLs in Haskell."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
62 changes: 62 additions & 0 deletions
62
...hark-data-1.1.1.0-r0-0e572280e6cf303bdddea248ec848426715658c4ad49c76c96f6774cfc3b9f69.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,62 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "2.4"; | ||
identifier = { name = "futhark-data"; version = "1.1.1.0"; }; | ||
license = "ISC"; | ||
copyright = ""; | ||
maintainer = "[email protected]"; | ||
author = "Troels Henriksen"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "An implementation of the Futhark data format."; | ||
description = "The Futhark compiler and its tools uses a simple external\ndata representation to encode arrays and scalars. This\npackage implements both a Haskell-level representation of\nthese values, as well as utility functions for reading\nand writing values in both the textual and binary format."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."binary" or (errorHandler.buildDepError "binary")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."bytestring-to-vector" or (errorHandler.buildDepError "bytestring-to-vector")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."half" or (errorHandler.buildDepError "half")) | ||
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec")) | ||
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) | ||
(hsPkgs."scientific" or (errorHandler.buildDepError "scientific")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
(hsPkgs."vector-binary-instances" or (errorHandler.buildDepError "vector-binary-instances")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"futhark-data-test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."binary" or (errorHandler.buildDepError "binary")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."futhark-data" or (errorHandler.buildDepError "futhark-data")) | ||
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec")) | ||
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck")) | ||
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) | ||
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit")) | ||
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
70 changes: 70 additions & 0 deletions
70
...app-token-0.0.1.1-r0-02f7376fd15039c3157ca54903c5f58676ee685facb9047274c1b13bbe7bf601.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,70 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "github-app-token"; version = "0.0.1.1"; }; | ||
license = "MIT"; | ||
copyright = ""; | ||
maintainer = "Freckle Education"; | ||
author = ""; | ||
homepage = "https://github.com/freckle/github-app-token#readme"; | ||
url = ""; | ||
synopsis = "Generate an installation access token for a GitHub App"; | ||
description = "Please see README.md"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit")) | ||
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types")) | ||
(hsPkgs."jwt" or (errorHandler.buildDepError "jwt")) | ||
(hsPkgs."path" or (errorHandler.buildDepError "path")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"readme" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."directory" or (errorHandler.buildDepError "directory")) | ||
(hsPkgs."dotenv" or (errorHandler.buildDepError "dotenv")) | ||
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token")) | ||
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit")) | ||
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types")) | ||
(hsPkgs."lens" or (errorHandler.buildDepError "lens")) | ||
(hsPkgs."lens-aeson" or (errorHandler.buildDepError "lens-aeson")) | ||
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
]; | ||
buildable = true; | ||
}; | ||
"spec" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."github-app-token" or (errorHandler.buildDepError "github-app-token")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
43 changes: 43 additions & 0 deletions
43
...ll-gi-base-0.26.8-r0-968e2bd48e6f1b9379713ddfda9e664bfbd050157cf937ceaf52b0e0536fcf8a.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,43 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "2.0"; | ||
identifier = { name = "haskell-gi-base"; version = "0.26.8"; }; | ||
license = "LGPL-2.1-only"; | ||
copyright = ""; | ||
maintainer = "Iñaki García Etxebarria ([email protected])"; | ||
author = "Will Thompson,\nIñaki García Etxebarria,\nJonas Platte"; | ||
homepage = "https://github.com/haskell-gi/haskell-gi"; | ||
url = ""; | ||
synopsis = "Foundation for libraries generated by haskell-gi"; | ||
description = "Foundation for libraries generated by haskell-gi"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
]; | ||
pkgconfig = [ | ||
(pkgconfPkgs."gobject-2.0" or (errorHandler.pkgConfDepError "gobject-2.0")) | ||
(pkgconfPkgs."glib-2.0" or (errorHandler.pkgConfDepError "glib-2.0")) | ||
]; | ||
build-tools = [ | ||
(hsPkgs.pkgsBuildBuild.hsc2hs.components.exes.hsc2hs or (pkgs.pkgsBuildBuild.hsc2hs or (errorHandler.buildToolDepError "hsc2hs:hsc2hs"))) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
64 changes: 64 additions & 0 deletions
64
hackage/hdf5-1.8.13-r0-8e9b1f8dd8777ba42e9604b66d59158b7a826380dacffe27fc1bff3b7e1c29ad.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,64 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { use-hdf5-serial = false; }; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "hdf5"; version = "1.8.13"; }; | ||
license = "LicenseRef-PublicDomain"; | ||
copyright = ""; | ||
maintainer = "Picca Frédéric-Emmanuel <[email protected]>"; | ||
author = "James Cook <[email protected]>"; | ||
homepage = "https://github.com/picca/hs-hdf5"; | ||
url = ""; | ||
synopsis = "Haskell interface to the HDF5 scientific data storage library."; | ||
description = "This is a low-level but typesafe Haskell interface to the HDF5 library. No pointers necessary."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bindings-DSL" or (errorHandler.buildDepError "bindings-DSL")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."libffi" or (errorHandler.buildDepError "libffi")) | ||
(hsPkgs."lifted-base" or (errorHandler.buildDepError "lifted-base")) | ||
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control")) | ||
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) | ||
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive")) | ||
(hsPkgs."tagged" or (errorHandler.buildDepError "tagged")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
]; | ||
pkgconfig = if flags.use-hdf5-serial | ||
then [ | ||
(pkgconfPkgs."hdf5-serial" or (errorHandler.pkgConfDepError "hdf5-serial")) | ||
] | ||
else [ | ||
(pkgconfPkgs."hdf5" or (errorHandler.pkgConfDepError "hdf5")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"hdf5-test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck")) | ||
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary")) | ||
(hsPkgs."hdf5" or (errorHandler.buildDepError "hdf5")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
49 changes: 49 additions & 0 deletions
49
...gsdienst-1.0.0.10-r0-b8b4f62154b4bc4c5a455b4beb1c86a7aa543fa557ace3800dfae53069378542.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,49 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.12"; | ||
identifier = { name = "keuringsdienst"; version = "1.0.0.10"; }; | ||
license = "LGPL-3.0-only"; | ||
copyright = ""; | ||
maintainer = "Josep Bigorra <[email protected]>"; | ||
author = ""; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = ""; | ||
description = "See README at https://github.com/jjba23/keuringsdienst"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"keuringsdienst-spec" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit")) | ||
(hsPkgs."keuringsdienst" or (errorHandler.buildDepError "keuringsdienst")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.