Skip to content

Commit c49948d

Browse files
author
IOHK
committed
Automatic Update
1 parent 66eff78 commit c49948d

File tree

145 files changed

+5172
-3
lines changed

Some content is hidden

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

145 files changed

+5172
-3
lines changed

default.nix

+1
Original file line numberDiff line numberDiff line change
@@ -14159,6 +14159,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
1415914159
"seqid-streams" = import ./nix/seqid-streams.nix;
1416014160
"seqloc" = import ./nix/seqloc.nix;
1416114161
"seqloc-datafiles" = import ./nix/seqloc-datafiles.nix;
14162+
"seqn" = import ./nix/seqn.nix;
1416214163
"sequence" = import ./nix/sequence.nix;
1416314164
"sequence-formats" = import ./nix/sequence-formats.nix;
1416414165
"sequenceTools" = import ./nix/sequence_Tools.nix;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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 = "csound-catalog"; version = "0.7.7.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov";
19+
homepage = "https://github.com/anton-k/csound-catalog";
20+
url = "";
21+
synopsis = "a gallery of Csound instruments.";
22+
description = "A gallery of Csound instruments and useful utils and examples.";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
31+
(hsPkgs."csound-expression" or (errorHandler.buildDepError "csound-expression"))
32+
(hsPkgs."csound-sampler" or (errorHandler.buildDepError "csound-sampler"))
33+
(hsPkgs."sharc-timbre" or (errorHandler.buildDepError "sharc-timbre"))
34+
];
35+
buildable = true;
36+
};
37+
};
38+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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 = "csound-expression"; version = "5.4.4.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov";
19+
homepage = "https://github.com/anton-k/csound-expression";
20+
url = "";
21+
synopsis = "library to make electronic music";
22+
description = "Welcome to the simplest textual synthesizer.\n\n> dac $ osc 440\n\nCsound-expression is a Haskell framework for computer music.\nWith the help of the library we can create our instruments on the fly.\nA few lines in the interpreter is enough to get the cool sound going\nout of your speakers. It can be used for simple daily sound-file processing\nor for a full-blown live performances.\n\nGot interested? Check out the guide: <https://github.com/anton-k/csound-expression/blob/master/tutorial/Index.md>\n\nAcknowledgements (I'd like to mention those who supported me a lot with their music and ideas):\n\n* music: entertainment for the braindead, three pandas and the moon, odno no, ann's'annat & alizbar, toe, iamthemorning, atoms for piece / radiohead, loscil, boards of canada,\nHozan Yamamoto, Tony Scott and Shinichi Yuize.\n\n* ideas: Conal Elliott, Oleg Kiselyov, Paul Hudak, Gabriel Gonzalez, Rich Hickey and Csound's community.\n* Thanks a lot to all who patiently answered my questions and provided skillful solutions, encouragement and ideas:\n\nIain McCurdy, Victor Lazzarini, Rory Walsh, Steven Yi, John Ffitch, Jon Downing, Joachim Heintz, Peter Burgess, Dr. Richard Boulanger, Michael Gogins, Oeyvind Brandtsegg,\nRichard Dobson, Partev Barr Sarkissian, Dave Phillips, Guillermo Senna, Art Hunkins,\nBen McAllister, Michael Rhoades, Gleb Rogozinsky, Eugene Cherny, Brian Merchant, Wolf Peuker, Hlöðver Sigurðsson, Aaron Krister Johnson, Andy Fillebrown and friends :)";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
31+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
32+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
33+
(hsPkgs."Boolean" or (errorHandler.buildDepError "Boolean"))
34+
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
35+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
36+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
37+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
38+
(hsPkgs."csound-expression-typed" or (errorHandler.buildDepError "csound-expression-typed"))
39+
(hsPkgs."csound-expression-dynamic" or (errorHandler.buildDepError "csound-expression-dynamic"))
40+
(hsPkgs."temporal-media" or (errorHandler.buildDepError "temporal-media"))
41+
(hsPkgs."csound-expression-opcodes" or (errorHandler.buildDepError "csound-expression-opcodes"))
42+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
43+
];
44+
buildable = true;
45+
};
46+
benchmarks = {
47+
"csound-expression-benchmark" = {
48+
depends = [
49+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
50+
(hsPkgs."csound-expression" or (errorHandler.buildDepError "csound-expression"))
51+
(hsPkgs."gauge" or (errorHandler.buildDepError "gauge"))
52+
];
53+
buildable = true;
54+
};
55+
};
56+
};
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
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 = "csound-expression"; version = "5.4.4.1"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov";
19+
homepage = "https://github.com/anton-k/csound-expression";
20+
url = "";
21+
synopsis = "library to make electronic music";
22+
description = "Welcome to the simplest textual synthesizer.\n\n> dac $ osc 440\n\nCsound-expression is a Haskell framework for computer music.\nWith the help of the library we can create our instruments on the fly.\nA few lines in the interpreter is enough to get the cool sound going\nout of your speakers. It can be used for simple daily sound-file processing\nor for a full-blown live performances.\n\nGot interested? Check out the guide: <https://github.com/anton-k/csound-expression/blob/master/tutorial/Index.md>\n\nAcknowledgements (I'd like to mention those who supported me a lot with their music and ideas):\n\n* music: entertainment for the braindead, three pandas and the moon, odno no, ann's'annat & alizbar, toe, iamthemorning, atoms for piece / radiohead, loscil, boards of canada,\nHozan Yamamoto, Tony Scott and Shinichi Yuize.\n\n* ideas: Conal Elliott, Oleg Kiselyov, Paul Hudak, Gabriel Gonzalez, Rich Hickey and Csound's community.\n* Thanks a lot to all who patiently answered my questions and provided skillful solutions, encouragement and ideas:\n\nIain McCurdy, Victor Lazzarini, Rory Walsh, Steven Yi, John Ffitch, Jon Downing, Joachim Heintz, Peter Burgess, Dr. Richard Boulanger, Michael Gogins, Oeyvind Brandtsegg,\nRichard Dobson, Partev Barr Sarkissian, Dave Phillips, Guillermo Senna, Art Hunkins,\nBen McAllister, Michael Rhoades, Gleb Rogozinsky, Eugene Cherny, Brian Merchant, Wolf Peuker, Hlöðver Sigurðsson, Aaron Krister Johnson, Andy Fillebrown and friends :)";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."process" or (errorHandler.buildDepError "process"))
31+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
32+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
33+
(hsPkgs."Boolean" or (errorHandler.buildDepError "Boolean"))
34+
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
35+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
36+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
37+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
38+
(hsPkgs."csound-expression-typed" or (errorHandler.buildDepError "csound-expression-typed"))
39+
(hsPkgs."csound-expression-dynamic" or (errorHandler.buildDepError "csound-expression-dynamic"))
40+
(hsPkgs."temporal-media" or (errorHandler.buildDepError "temporal-media"))
41+
(hsPkgs."csound-expression-opcodes" or (errorHandler.buildDepError "csound-expression-opcodes"))
42+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
43+
];
44+
buildable = true;
45+
};
46+
benchmarks = {
47+
"csound-expression-benchmark" = {
48+
depends = [
49+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
50+
(hsPkgs."csound-expression" or (errorHandler.buildDepError "csound-expression"))
51+
(hsPkgs."gauge" or (errorHandler.buildDepError "gauge"))
52+
];
53+
buildable = true;
54+
};
55+
};
56+
};
57+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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 = "csound-expression-dynamic"; version = "0.4.0.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov";
19+
homepage = "https://github.com/anton-k/csound-expression-dynamic";
20+
url = "";
21+
synopsis = "dynamic core for csound-expression library";
22+
description = "Basic bare bone library to generate Csound code";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."base64-bytestring" or (errorHandler.buildDepError "base64-bytestring"))
31+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
32+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
33+
(hsPkgs."dlist" or (errorHandler.buildDepError "dlist"))
34+
(hsPkgs."cereal" or (errorHandler.buildDepError "cereal"))
35+
(hsPkgs."cereal-text" or (errorHandler.buildDepError "cereal-text"))
36+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
37+
(hsPkgs."array" or (errorHandler.buildDepError "array"))
38+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
39+
(hsPkgs."wl-pprint-text" or (errorHandler.buildDepError "wl-pprint-text"))
40+
(hsPkgs."Boolean" or (errorHandler.buildDepError "Boolean"))
41+
(hsPkgs."data-fix" or (errorHandler.buildDepError "data-fix"))
42+
(hsPkgs."data-fix-cse" or (errorHandler.buildDepError "data-fix-cse"))
43+
(hsPkgs."deriving-compat" or (errorHandler.buildDepError "deriving-compat"))
44+
(hsPkgs."safe" or (errorHandler.buildDepError "safe"))
45+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
46+
(hsPkgs."cryptohash-sha256" or (errorHandler.buildDepError "cryptohash-sha256"))
47+
(hsPkgs."vector" or (errorHandler.buildDepError "vector"))
48+
(hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers"))
49+
(hsPkgs."pretty-show" or (errorHandler.buildDepError "pretty-show"))
50+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
51+
(hsPkgs."safe" or (errorHandler.buildDepError "safe"))
52+
];
53+
buildable = true;
54+
};
55+
};
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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 = "csound-expression-opcodes"; version = "0.0.5.4"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov";
19+
homepage = "";
20+
url = "";
21+
synopsis = "opcodes for the library csound-expression";
22+
description = "opcodes for the library csound-expression. docs are generated";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
31+
(hsPkgs."csound-expression-typed" or (errorHandler.buildDepError "csound-expression-typed"))
32+
(hsPkgs."csound-expression-dynamic" or (errorHandler.buildDepError "csound-expression-dynamic"))
33+
];
34+
buildable = true;
35+
};
36+
};
37+
}
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 = "1.12";
14+
identifier = { name = "csound-expression-typed"; version = "0.2.8.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov";
19+
homepage = "https://github.com/anton-k/csound-expression-typed";
20+
url = "";
21+
synopsis = "typed core for the library csound-expression";
22+
description = "typed core for library csound-expression. Provides typed core lang for csound";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
32+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
33+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
34+
(hsPkgs."Boolean" or (errorHandler.buildDepError "Boolean"))
35+
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
36+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
37+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
38+
(hsPkgs."NumInstances" or (errorHandler.buildDepError "NumInstances"))
39+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
40+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
41+
(hsPkgs."wl-pprint-text" or (errorHandler.buildDepError "wl-pprint-text"))
42+
(hsPkgs."csound-expression-dynamic" or (errorHandler.buildDepError "csound-expression-dynamic"))
43+
(hsPkgs."temporal-media" or (errorHandler.buildDepError "temporal-media"))
44+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
45+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
46+
];
47+
buildable = true;
48+
};
49+
};
50+
}
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 = "1.12";
14+
identifier = { name = "csound-expression-typed"; version = "0.2.9.0"; };
15+
license = "BSD-3-Clause";
16+
copyright = "";
17+
maintainer = "<[email protected]>";
18+
author = "Anton Kholomiov";
19+
homepage = "https://github.com/anton-k/csound-expression-typed";
20+
url = "";
21+
synopsis = "typed core for the library csound-expression";
22+
description = "typed core for library csound-expression. Provides typed core lang for csound";
23+
buildType = "Simple";
24+
};
25+
components = {
26+
"library" = {
27+
depends = [
28+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
29+
(hsPkgs."base" or (errorHandler.buildDepError "base"))
30+
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
31+
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim"))
32+
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
33+
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
34+
(hsPkgs."Boolean" or (errorHandler.buildDepError "Boolean"))
35+
(hsPkgs."colour" or (errorHandler.buildDepError "colour"))
36+
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default"))
37+
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq"))
38+
(hsPkgs."NumInstances" or (errorHandler.buildDepError "NumInstances"))
39+
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath"))
40+
(hsPkgs."directory" or (errorHandler.buildDepError "directory"))
41+
(hsPkgs."wl-pprint-text" or (errorHandler.buildDepError "wl-pprint-text"))
42+
(hsPkgs."csound-expression-dynamic" or (errorHandler.buildDepError "csound-expression-dynamic"))
43+
(hsPkgs."temporal-media" or (errorHandler.buildDepError "temporal-media"))
44+
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable"))
45+
(hsPkgs."text" or (errorHandler.buildDepError "text"))
46+
];
47+
buildable = true;
48+
};
49+
};
50+
}

0 commit comments

Comments
 (0)