-
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
Jan 28, 2024
1 parent
c271320
commit 5969e45
Showing
17 changed files
with
571 additions
and
2 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
72 changes: 72 additions & 0 deletions
72
...s-contrib-1.4.5.1-r1-5d77fed382262fec5239ba650d8771d0db328b355e1fc07ec0382ecdf0bb7821.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,72 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "diagrams-contrib"; version = "1.4.5.1"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = ""; | ||
maintainer = "Various; see individual modules"; | ||
author = "Various"; | ||
homepage = "https://diagrams.github.io/"; | ||
url = ""; | ||
synopsis = "Collection of user contributions to diagrams EDSL"; | ||
description = "A collection of user contributions for diagrams,\nan embedded domain-specific language for generation\nof vector graphics."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) | ||
(hsPkgs."mtl-compat" or (errorHandler.buildDepError "mtl-compat")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."split" or (errorHandler.buildDepError "split")) | ||
(hsPkgs."colour" or (errorHandler.buildDepError "colour")) | ||
(hsPkgs."split" or (errorHandler.buildDepError "split")) | ||
(hsPkgs."monoid-extras" or (errorHandler.buildDepError "monoid-extras")) | ||
(hsPkgs."diagrams-core" or (errorHandler.buildDepError "diagrams-core")) | ||
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib")) | ||
(hsPkgs."diagrams-solve" or (errorHandler.buildDepError "diagrams-solve")) | ||
(hsPkgs."lens" or (errorHandler.buildDepError "lens")) | ||
(hsPkgs."linear" or (errorHandler.buildDepError "linear")) | ||
(hsPkgs."force-layout" or (errorHandler.buildDepError "force-layout")) | ||
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) | ||
(hsPkgs."MonadRandom" or (errorHandler.buildDepError "MonadRandom")) | ||
(hsPkgs."random" or (errorHandler.buildDepError "random")) | ||
(hsPkgs."circle-packing" or (errorHandler.buildDepError "circle-packing")) | ||
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."data-default-class" or (errorHandler.buildDepError "data-default-class")) | ||
(hsPkgs."semigroups" or (errorHandler.buildDepError "semigroups")) | ||
(hsPkgs."cubicbezier" or (errorHandler.buildDepError "cubicbezier")) | ||
(hsPkgs."hashable" or (errorHandler.buildDepError "hashable")) | ||
(hsPkgs."mfsolve" or (errorHandler.buildDepError "mfsolve")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"turtle-tests" = { | ||
depends = [ | ||
(hsPkgs."HUnit" or (errorHandler.buildDepError "HUnit")) | ||
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."test-framework" or (errorHandler.buildDepError "test-framework")) | ||
(hsPkgs."test-framework-hunit" or (errorHandler.buildDepError "test-framework-hunit")) | ||
(hsPkgs."test-framework-quickcheck2" or (errorHandler.buildDepError "test-framework-quickcheck2")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
58 changes: 58 additions & 0 deletions
58
...directory-1.3.8.3-r0-7bae5a1b4c78247eb1bb89171cd63021e40a44231e93268e1745d055d3c208d5.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 = { os-string = false; }; | ||
package = { | ||
specVersion = "2.2"; | ||
identifier = { name = "directory"; version = "1.3.8.3"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = ""; | ||
maintainer = "[email protected]"; | ||
author = ""; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "Platform-agnostic library for filesystem operations"; | ||
description = "This library provides a basic set of operations for manipulating files and\ndirectories in a portable way."; | ||
buildType = "Configure"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = ([ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
] ++ (if system.isWindows | ||
then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ] | ||
else [ | ||
(hsPkgs."unix" or (errorHandler.buildDepError "unix")) | ||
])) ++ (if flags.os-string | ||
then [ | ||
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) | ||
(hsPkgs."os-string" or (errorHandler.buildDepError "os-string")) | ||
] | ||
else [ | ||
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) | ||
]); | ||
buildable = true; | ||
}; | ||
tests = { | ||
"test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."directory" or (errorHandler.buildDepError "directory")) | ||
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
] ++ (if system.isWindows | ||
then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ] | ||
else [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]); | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
37 changes: 37 additions & 0 deletions
37
...nts-array-0.8.0.0-r0-504cad18135f7889713f6d07cc2f615729eb3239509654090793f389e054d609.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,37 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { | ||
name = "phonetic-languages-constraints-array"; | ||
version = "0.8.0.0"; | ||
}; | ||
license = "MIT"; | ||
copyright = "Oleksandr Zhabenko"; | ||
maintainer = "[email protected]"; | ||
author = "OleksandrZhabenko"; | ||
homepage = "https://hackage.haskell.org/package/phonetic-languages-constraints-array"; | ||
url = ""; | ||
synopsis = "Constraints to filter the needed permutations"; | ||
description = "Provides several the most important variants of constraints. Can be used with the phonetic-languages-common series of package. Instead of vectors, uses arrays."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."monoid-insertleft" or (errorHandler.buildDepError "monoid-insertleft")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
64 changes: 64 additions & 0 deletions
64
...ge/specup-0.0.0.1-r0-296386dcebdf06e50299b842319f3860aaa2cef8610c162e3bb11b4c15df5fdc.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 = {}; | ||
package = { | ||
specVersion = "3.6"; | ||
identifier = { name = "specup"; version = "0.0.0.1"; }; | ||
license = "GPL-2.0-only"; | ||
copyright = "(c) 2024 Daniel Rolls"; | ||
maintainer = "[email protected]"; | ||
author = "Daniel Rolls"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "Manage the application of templates to custom yaml"; | ||
description = "Please see the README on GitHub at <https://github.com/danielrolls/specup>"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) | ||
(hsPkgs."stache" or (errorHandler.buildDepError "stache")) | ||
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec")) | ||
(hsPkgs."extra" or (errorHandler.buildDepError "extra")) | ||
]; | ||
buildable = true; | ||
}; | ||
exes = { | ||
"specup" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative")) | ||
(hsPkgs."specup" or (errorHandler.buildDepError "specup")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
tests = { | ||
"specup-test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."hspec-core" or (errorHandler.buildDepError "hspec-core")) | ||
(hsPkgs."specup" or (errorHandler.buildDepError "specup")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
64 changes: 64 additions & 0 deletions
64
...ge/specup-0.1.0.0-r0-c7a7d605ca0b81587bc25c476024bd96563ed362f59934ff7c17a399c021f5e3.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 = {}; | ||
package = { | ||
specVersion = "3.0"; | ||
identifier = { name = "specup"; version = "0.1.0.0"; }; | ||
license = "GPL-2.0-only"; | ||
copyright = "(c) 2024 Daniel Rolls"; | ||
maintainer = "[email protected]"; | ||
author = "Daniel Rolls"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "Manage the application of templates to custom yaml"; | ||
description = "Please see the README on GitHub at <https://github.com/danielrolls/specup>"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) | ||
(hsPkgs."stache" or (errorHandler.buildDepError "stache")) | ||
(hsPkgs."megaparsec" or (errorHandler.buildDepError "megaparsec")) | ||
(hsPkgs."extra" or (errorHandler.buildDepError "extra")) | ||
]; | ||
buildable = true; | ||
}; | ||
exes = { | ||
"specup" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative")) | ||
(hsPkgs."specup" or (errorHandler.buildDepError "specup")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
tests = { | ||
"specup-test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."hspec-core" or (errorHandler.buildDepError "hspec-core")) | ||
(hsPkgs."specup" or (errorHandler.buildDepError "specup")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.