-
Notifications
You must be signed in to change notification settings - Fork 17
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
Dec 3, 2024
1 parent
8b4a346
commit ca66bff
Showing
19 changed files
with
1,048 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
55 changes: 55 additions & 0 deletions
55
...ChibiHash-0.2.0.0-r0-0572f3151ea939ff192904546cf945480c56bd0f49ec29a6ff23b4642f05b391.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,55 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "ChibiHash"; version = "0.2.0.0"; }; | ||
license = "MIT"; | ||
copyright = "2024 Ville Vesilehto"; | ||
maintainer = "[email protected]"; | ||
author = "Ville Vesilehto"; | ||
homepage = "https://github.com/thevilledev/ChibiHash-hs"; | ||
url = ""; | ||
synopsis = "a simple and fast 64-bit hash function"; | ||
description = "Haskell port of ChibiHash, a simple and fast 64-bit hash function.\n\nFeatures:\n\n* Fast 64-bit hashing\n* Suitable for hash tables and hash-based data structures\n* Supports both V1 and V2 implementations\n\nFor more information, see the article \"ChibiHash: A small, fast 64-bit hash function\"\nat https://nrk.neocities.org/articles/chibihash"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
]; | ||
buildable = true; | ||
}; | ||
exes = { | ||
"ChibiHash-example" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."ChibiHash" or (errorHandler.buildDepError "ChibiHash")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
tests = { | ||
"ChibiHash-test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."ChibiHash" or (errorHandler.buildDepError "ChibiHash")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
55 changes: 55 additions & 0 deletions
55
...ChibiHash-0.2.0.0-r1-5602454c7f4e9ba6493aba6e28a7ce48d11cd2f52b4128984d5df4b131946e5f.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,55 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "1.18"; | ||
identifier = { name = "ChibiHash"; version = "0.2.0.0"; }; | ||
license = "MIT"; | ||
copyright = "2024 Ville Vesilehto"; | ||
maintainer = "[email protected]"; | ||
author = "Ville Vesilehto"; | ||
homepage = "https://github.com/thevilledev/ChibiHash-hs"; | ||
url = ""; | ||
synopsis = "a simple and fast 64-bit hash function"; | ||
description = "Haskell port of ChibiHash, a simple and fast 64-bit hash function.\n\nFeatures:\n\n* Fast 64-bit hashing\n* Suitable for hash tables and hash-based data structures\n* Supports both V1 and V2 implementations\n\nFor more information, see the article \"ChibiHash: A small, fast 64-bit hash function\"\nat https://nrk.neocities.org/articles/chibihash"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
]; | ||
buildable = true; | ||
}; | ||
exes = { | ||
"ChibiHash-example" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."ChibiHash" or (errorHandler.buildDepError "ChibiHash")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
tests = { | ||
"ChibiHash-test" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."ChibiHash" or (errorHandler.buildDepError "ChibiHash")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
41 changes: 41 additions & 0 deletions
41
...lickHaskell-0.1.0-r0-5439b9f1cc3a68be6cc60fc0691e7f75a68415b83655c6a4e06e1249bd62a111.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,41 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { release = false; dev = false; }; | ||
package = { | ||
specVersion = "3.4"; | ||
identifier = { name = "ClickHaskell"; version = "0.1.0"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "2023 Kovalev Dmitry"; | ||
maintainer = "Kovalev Dmitry"; | ||
author = "Kovalev Dmitry"; | ||
homepage = "https://github.com/KovalevDima/ClickHaskell#readme"; | ||
url = ""; | ||
synopsis = "ClickHouse driver"; | ||
description = "Small dependency footprint highlevel ClickHouse driver "; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."binary" or (errorHandler.buildDepError "binary")) | ||
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
(hsPkgs."network" or (errorHandler.buildDepError "network")) | ||
(hsPkgs."wide-word" or (errorHandler.buildDepError "wide-word")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
} |
58 changes: 58 additions & 0 deletions
58
...nroseKiteDart-1.2-r0-dfa6ef75552221133667a284347e3df163c64cfff4e6a567e7a0a3784c1cb7db.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.12"; | ||
identifier = { name = "PenroseKiteDart"; version = "1.2"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "2021 Chris Reade"; | ||
maintainer = "[email protected]"; | ||
author = "Chris Reade"; | ||
homepage = "https://github.com/chrisreade/PenroseKiteDart#readme"; | ||
url = ""; | ||
synopsis = "Library to explore Penrose's Kite and Dart Tilings."; | ||
description = "Library to explore Penrose's Kite and Dart Tilings using Haskell Diagrams. Please see README.md"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib")) | ||
]; | ||
buildable = true; | ||
}; | ||
tests = { | ||
"PenroseKiteDart-test" = { | ||
depends = [ | ||
(hsPkgs."PenroseKiteDart" or (errorHandler.buildDepError "PenroseKiteDart")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib")) | ||
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
benchmarks = { | ||
"PenroseKiteDart-bench" = { | ||
depends = [ | ||
(hsPkgs."PenroseKiteDart" or (errorHandler.buildDepError "PenroseKiteDart")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."diagrams-lib" or (errorHandler.buildDepError "diagrams-lib")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.