Skip to content

Commit 06fc313

Browse files
author
IOHK
committed
Automatic Update
1 parent 6d5befb commit 06fc313

23 files changed

+972
-3
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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.12";
14+
identifier = { name = "I1M"; version = "0.2.0"; };
15+
license = "GPL-2.0-only";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Jose A. Alonso";
19+
homepage = "https://github.com/jaalonso/I1M";
20+
url = "";
21+
synopsis = "Code for the Haskell course taught at the University of Seville.";
22+
description = "En este paquete se encuentra los códigos de las librerías\ndesarrolladas en el curso de\n<https://www.cs.us.es/~jalonso/cursos/i1m Informática>\nde 1º del Grado en Matemáticas de la Universidad de Sevilla.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
29+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"test" = {
36+
depends = [
37+
(hsPkgs."I1M" or (errorHandler.buildDepError "I1M"))
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
40+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
41+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
42+
];
43+
buildable = true;
44+
};
45+
};
46+
};
47+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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.12";
14+
identifier = { name = "I1M"; version = "0.2.1"; };
15+
license = "GPL-2.0-only";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Jose A. Alonso";
19+
homepage = "https://github.com/jaalonso/I1M";
20+
url = "";
21+
synopsis = "Code for the Haskell course taught at the University of Seville.";
22+
description = "En este paquete se encuentra los códigos de las librerías\ndesarrolladas en el curso de\n<https://www.cs.us.es/~jalonso/cursos/i1m Informática>\nde 1º del Grado en Matematicas de la Universidad de Sevilla.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
29+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"test" = {
36+
depends = [
37+
(hsPkgs."I1M" or (errorHandler.buildDepError "I1M"))
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
40+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
41+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
42+
];
43+
buildable = true;
44+
};
45+
};
46+
};
47+
}
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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.12";
14+
identifier = { name = "I1M"; version = "0.2.2"; };
15+
license = "GPL-2.0-only";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Jose A. Alonso";
19+
homepage = "https://github.com/jaalonso/I1M";
20+
url = "";
21+
synopsis = "Code for the Haskell course taught at the University of Seville.";
22+
description = "En este paquete se encuentra los códigos de las librerías\ndesarrolladas en el curso de\n<https://www.cs.us.es/~jalonso/cursos/i1m Informatica>\nde 1º del Grado en Matemáticas de la Universidad de Sevilla.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
29+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
30+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
31+
];
32+
buildable = true;
33+
};
34+
tests = {
35+
"test" = {
36+
depends = [
37+
(hsPkgs."I1M" or (errorHandler.buildDepError "I1M"))
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
40+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
41+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
42+
];
43+
buildable = true;
44+
};
45+
};
46+
};
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = {};
12+
package = {
13+
specVersion = "3.0";
14+
identifier = { name = "aeson-generic-default"; version = "0.1.1.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "[email protected]";
18+
author = "Ondrej Palkovsky";
19+
homepage = "https://github.com/ondrap/aeson-generic-default";
20+
url = "";
21+
synopsis = "Type-level default fields for aeson Generic FromJSON parser";
22+
description = "Define default values for missing FromJSON object fields within field type declaration. \n\nIt becomes handy e.g. for parsing yaml configuration files. The default values are mostly defined\ndirectly at the type level so that the user doesn't have to write manual FromJSON instance.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
30+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
31+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
32+
];
33+
buildable = true;
34+
};
35+
tests = {
36+
"aeson-default-field-test" = {
37+
depends = [
38+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
39+
(hsPkgs."aeson-generic-default" or (errorHandler.buildDepError "aeson-generic-default"))
40+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
41+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
42+
(hsPkgs."aeson" or (errorHandler.buildDepError "aeson"))
43+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
44+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
45+
];
46+
buildable = true;
47+
};
48+
};
49+
};
50+
}
Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
{ system
2+
, compiler
3+
, flags
4+
, pkgs
5+
, hsPkgs
6+
, pkgconfPkgs
7+
, errorHandler
8+
, config
9+
, ... }:
10+
{
11+
flags = { bounded_memory = false; };
12+
package = {
13+
specVersion = "2.2";
14+
identifier = { name = "hnix-store-nar"; version = "0.1.1.0"; };
15+
license = "Apache-2.0";
16+
copyright = "2018 Shea Levy";
17+
maintainer = "[email protected]";
18+
author = "Shea Levy";
19+
homepage = "https://github.com/haskell-nix/hnix-store";
20+
url = "";
21+
synopsis = "NAR file format";
22+
description = "Packing and unpacking for NAR file format used by Nix.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."algebraic-graphs" or (errorHandler.buildDepError "algebraic-graphs"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."case-insensitive" or (errorHandler.buildDepError "case-insensitive"))
32+
(hsPkgs."cereal" or (errorHandler.buildDepError "cereal"))
33+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
34+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
35+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
36+
(hsPkgs."lifted-base" or (errorHandler.buildDepError "lifted-base"))
37+
(hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control"))
38+
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
39+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
40+
(hsPkgs."unix" or (errorHandler.buildDepError "unix"))
41+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
42+
];
43+
buildable = true;
44+
};
45+
tests = {
46+
"nar" = {
47+
depends = [
48+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
49+
(hsPkgs."cryptonite" or (errorHandler.buildDepError "cryptonite"))
50+
(hsPkgs."hnix-store-nar" or (errorHandler.buildDepError "hnix-store-nar"))
51+
(hsPkgs."base64-bytestring" or (errorHandler.buildDepError "base64-bytestring"))
52+
(hsPkgs."cereal" or (errorHandler.buildDepError "cereal"))
53+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
54+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
55+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
56+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
57+
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
58+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
59+
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary"))
60+
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
61+
(hsPkgs."tasty-hspec" or (errorHandler.buildDepError "tasty-hspec"))
62+
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
63+
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
64+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
65+
(hsPkgs."unix" or (errorHandler.buildDepError "unix"))
66+
];
67+
build-tools = [
68+
(hsPkgs.pkgsBuildBuild.tasty-discover.components.exes.tasty-discover or (pkgs.pkgsBuildBuild.tasty-discover or (errorHandler.buildToolDepError "tasty-discover:tasty-discover")))
69+
];
70+
buildable = true;
71+
};
72+
};
73+
};
74+
}

0 commit comments

Comments
 (0)