-
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
Sep 27, 2024
1 parent
07bc5cc
commit 9a52430
Showing
25 changed files
with
1,015 additions
and
0 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
31 changes: 31 additions & 0 deletions
31
...n-prelude-3.0.1.0-r0-072f6a183d5862cb3ed83ee933f24ab8c2d3d49036c3e0f9a021826ce1222958.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 = { development = false; }; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "composition-prelude"; version = "3.0.1.0"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "Copyright: (c) 2017-2020 Vanessa McHale"; | ||
maintainer = "[email protected]"; | ||
author = "Vanessa McHale"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "Higher-order function combinators"; | ||
description = "Replacement for [composition](hackage.haskell.org/package/composition) or [composition-extra](hackage.haskell.org/package/composition-extra), exporting everything in one module."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ (hsPkgs."base" or (errorHandler.buildDepError "base")) ]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
58 changes: 58 additions & 0 deletions
58
.../elm-bridge-0.8.4-r0-af184687f61fe149114209c6b6f2a89549b1148414b0b7db8d05d8a4d4737c4c.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 = {}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "elm-bridge"; version = "0.8.4"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "(c) 2015 - 2016 Alexander Thiemann and contributors"; | ||
maintainer = "Alexander Thiemann <[email protected]>"; | ||
author = "Alexander Thiemann <[email protected]>, Simon Marechal <[email protected]>"; | ||
homepage = "https://github.com/agrafix/elm-bridge"; | ||
url = ""; | ||
synopsis = "Derive Elm types and Json code from Haskell types, using aeson's options"; | ||
description = "Building the bridge from Haskell to Elm and back. Define types once,\nand derive the aeson and elm functions at the same time, using any aeson\noption you like. Cheers!"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."template-haskell" or (errorHandler.buildDepError "template-haskell")) | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"end-to-end-tests" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."elm-bridge" or (errorHandler.buildDepError "elm-bridge")) | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
]; | ||
buildable = true; | ||
}; | ||
"derive-elm-tests" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."elm-bridge" or (errorHandler.buildDepError "elm-bridge")) | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
73 changes: 73 additions & 0 deletions
73
...app-token-0.0.2.0-r0-22555e4e3e10af881e0036dd08b255439758c5e3cd2c005b8268114cc1193891.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,73 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "github-app-token"; version = "0.0.2.0"; }; | ||
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."monoidal-containers" or (errorHandler.buildDepError "monoidal-containers")) | ||
(hsPkgs."path" or (errorHandler.buildDepError "path")) | ||
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"readme" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(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."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit")) | ||
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types")) | ||
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
]; | ||
buildable = true; | ||
}; | ||
"spec" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(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; | ||
}; | ||
}; | ||
}; | ||
} |
73 changes: 73 additions & 0 deletions
73
...app-token-0.0.3.0-r0-798a9997ce6550b09c49488bbcae5d00833028750075f48b64f9e35b8940beaa.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,73 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "github-app-token"; version = "0.0.3.0"; }; | ||
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."monoidal-containers" or (errorHandler.buildDepError "monoidal-containers")) | ||
(hsPkgs."path" or (errorHandler.buildDepError "path")) | ||
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"readme" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(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."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."http-conduit" or (errorHandler.buildDepError "http-conduit")) | ||
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types")) | ||
(hsPkgs."markdown-unlit" or (errorHandler.buildDepError "markdown-unlit")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
]; | ||
buildable = true; | ||
}; | ||
"spec" = { | ||
depends = [ | ||
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) | ||
(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; | ||
}; | ||
}; | ||
}; | ||
} |
47 changes: 47 additions & 0 deletions
47
.../hslua-list-1.1.3-r0-81ea59d87399d44fe7a41031ca1d2366c0a5d92b20064fc7b495efd10be192de.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,47 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "2.2"; | ||
identifier = { name = "hslua-list"; version = "1.1.3"; }; | ||
license = "MIT"; | ||
copyright = "© 2022-2024 Albert Krewinkel"; | ||
maintainer = "Albert Krewinkel <[email protected]>"; | ||
author = "Albert Krewinkel"; | ||
homepage = "https://hslua.org/"; | ||
url = ""; | ||
synopsis = "Opinionated, but extensible Lua list type."; | ||
description = "List type for Lua, with a Haskell interface."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."hslua-core" or (errorHandler.buildDepError "hslua-core")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"hslua-list-test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."hslua-core" or (errorHandler.buildDepError "hslua-core")) | ||
(hsPkgs."hslua-list" or (errorHandler.buildDepError "hslua-list")) | ||
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) | ||
(hsPkgs."tasty-lua" or (errorHandler.buildDepError "tasty-lua")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.