Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 43c8664

Browse files
author
IOHK
committedSep 23, 2024
Automatic Update
1 parent f6e5c93 commit 43c8664

File tree

41 files changed

+1441
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1441
-1
lines changed
 

‎default.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12129,6 +12129,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1212912129
"partial-uri" = import ./nix/partial-uri.nix;
1213012130
"partialord" = import ./nix/partialord.nix;
1213112131
"partly" = import ./nix/partly.nix;
12132+
"paseto" = import ./nix/paseto.nix;
1213212133
"passage" = import ./nix/passage.nix;
1213312134
"passman" = import ./nix/passman.nix;
1213412135
"passman-cli" = import ./nix/passman-cli.nix;
@@ -16535,6 +16536,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1653516536
"typed-gui" = import ./nix/typed-gui.nix;
1653616537
"typed-process" = import ./nix/typed-process.nix;
1653716538
"typed-process-effectful" = import ./nix/typed-process-effectful.nix;
16539+
"typed-range" = import ./nix/typed-range.nix;
1653816540
"typed-session" = import ./nix/typed-session.nix;
1653916541
"typed-session-state-algorithm" = import ./nix/typed-session-state-algorithm.nix;
1654016542
"typed-spreadsheet" = import ./nix/typed-spreadsheet.nix;
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "1.10";
14+
identifier = { name = "GLFW-b"; version = "3.3.9.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "Brian Lewis <brian@lorf.org>\n, Schell Scivally <schell.scivally@synapsegroup.com>\n, Pavel Krajcevski <krajcevski@gmail.com>";
18+
author = "Brian Lewis <brian@lorf.org>";
19+
homepage = "";
20+
url = "";
21+
synopsis = "Bindings to GLFW OpenGL library";
22+
description = "Bindings to GLFW (<http://www.glfw.org/>), an open source, multi-platform\nlibrary for creating windows with OpenGL contexts and managing input and\nevents.\n\nGLFW-b depends on bindings-GLFW\n(<http://hackage.haskell.org/package/bindings-GLFW>), which, as of the time\nof this writing, binds to GLFW 3.3.9, released 2023-12-13\n(<http://www.glfw.org/Version-3.3.0-released.html>\n<http://www.glfw.org/changelog.html>).\n\nIf you've used GLFW < 3 before, you should read the transition guide\n(<http://www.glfw.org/docs/3.0/moving.html>).";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
30+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
31+
(hsPkgs."bindings-GLFW" or (errorHandler.buildDepError "bindings-GLFW"))
32+
];
33+
buildable = true;
34+
};
35+
tests = {
36+
"main" = {
37+
depends = [
38+
(hsPkgs."GLFW-b" or (errorHandler.buildDepError "GLFW-b"))
39+
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit"))
40+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
41+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
42+
(hsPkgs."bindings-GLFW" or (errorHandler.buildDepError "bindings-GLFW"))
43+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
44+
(hsPkgs."test-framework" or (errorHandler.buildDepError "test-framework"))
45+
(hsPkgs."test-framework-hunit" or (errorHandler.buildDepError "test-framework-hunit"))
46+
];
47+
buildable = true;
48+
};
49+
};
50+
};
51+
}

0 commit comments

Comments
 (0)