Skip to content

Commit

Permalink
Automatic Update
Browse files Browse the repository at this point in the history
  • Loading branch information
pranaysashank committed Dec 11, 2024
1 parent 749a43c commit d16c4b1
Show file tree
Hide file tree
Showing 37 changed files with 1,650 additions and 3 deletions.
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15313,6 +15313,7 @@ with builtins; mapAttrs (_: mapAttrs (_: data: rec {
"storable-complex" = import ./nix/storable-complex.nix;
"storable-endian" = import ./nix/storable-endian.nix;
"storable-enum" = import ./nix/storable-enum.nix;
"storable-generic" = import ./nix/storable-generic.nix;
"storable-hetero-list" = import ./nix/storable-hetero-list.nix;
"storable-offset" = import ./nix/storable-offset.nix;
"storable-peek-poke" = import ./nix/storable-peek-poke.nix;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "1.10";
identifier = { name = "envy"; version = "2.1.4.0"; };
license = "BSD-3-Clause";
copyright = "David Johnson (c) 2015-2025";
maintainer = "[email protected]";
author = "David Johnson, Tim Adams, Eric Mertens, Nicolas Rolland";
homepage = "";
url = "";
synopsis = "An environmentally friendly way to deal with environment variables";
description = "For package use information see the <https://github.com/dmjio/envy/blob/master/README.md README.md>";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
];
buildable = true;
};
tests = {
"spec" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."envy" or (errorHandler.buildDepError "envy"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."time" or (errorHandler.buildDepError "time"))
(hsPkgs."transformers" or (errorHandler.buildDepError "transformers"))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = { usewcwidth = false; };
package = {
specVersion = "2.4";
identifier = { name = "errata"; version = "0.4.0.3"; };
license = "MIT";
copyright = "(c) 2020- comp";
maintainer = "[email protected]";
author = "comp";
homepage = "https://github.com/1Computer1/errata";
url = "";
synopsis = "Source code error pretty printing";
description = "An extremely customizable error pretty printer that can handle many kinds of error formatting.\nIt can handle errors that are connected, disconnected, and those spanning multiple lines.\n\nYou can get started by importing the \"Errata\" module.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
exes = {
"errata-example" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."errata" or (errorHandler.buildDepError "errata"))
];
buildable = true;
};
};
tests = {
"errata-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
(hsPkgs."errata" or (errorHandler.buildDepError "errata"))
(hsPkgs."hspec" or (errorHandler.buildDepError "hspec"))
(hsPkgs."hspec-golden" or (errorHandler.buildDepError "hspec-golden"))
];
build-tools = [
(hsPkgs.buildPackages.hspec-discover.components.exes.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover:hspec-discover")))
];
buildable = true;
};
};
};
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{ system
, compiler
, flags
, pkgs
, hsPkgs
, pkgconfPkgs
, errorHandler
, config
, ... }:
{
flags = {};
package = {
specVersion = "3.0";
identifier = { name = "fs-sim"; version = "0.3.1.0"; };
license = "Apache-2.0";
copyright = "2019-2024 Input Output Global Inc (IOG)";
maintainer = "[email protected], Joris Dral ([email protected])";
author = "IOG Engineering Team";
homepage = "https://github.com/input-output-hk/fs-sim";
url = "";
synopsis = "Simulated file systems";
description = "Simulated file systems.";
buildType = "Simple";
};
components = {
"library" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."base16-bytestring" or (errorHandler.buildDepError "base16-bytestring"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."fs-api" or (errorHandler.buildDepError "fs-api"))
(hsPkgs."io-classes" or (errorHandler.buildDepError "io-classes"))
(hsPkgs."io-classes".components.sublibs.strict-stm or (errorHandler.buildDepError "io-classes:strict-stm"))
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."safe-wild-cards" or (errorHandler.buildDepError "safe-wild-cards"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
tests = {
"fs-sim-test" = {
depends = [
(hsPkgs."base" or (errorHandler.buildDepError "base"))
(hsPkgs."bifunctors" or (errorHandler.buildDepError "bifunctors"))
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring"))
(hsPkgs."containers" or (errorHandler.buildDepError "containers"))
(hsPkgs."fs-api" or (errorHandler.buildDepError "fs-api"))
(hsPkgs."fs-sim" or (errorHandler.buildDepError "fs-sim"))
(hsPkgs."generics-sop" or (errorHandler.buildDepError "generics-sop"))
(hsPkgs."io-classes".components.sublibs.strict-stm or (errorHandler.buildDepError "io-classes:strict-stm"))
(hsPkgs."pretty-show" or (errorHandler.buildDepError "pretty-show"))
(hsPkgs."primitive" or (errorHandler.buildDepError "primitive"))
(hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck"))
(hsPkgs."quickcheck-state-machine" or (errorHandler.buildDepError "quickcheck-state-machine"))
(hsPkgs."random" or (errorHandler.buildDepError "random"))
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty"))
(hsPkgs."tasty-hunit" or (errorHandler.buildDepError "tasty-hunit"))
(hsPkgs."tasty-quickcheck" or (errorHandler.buildDepError "tasty-quickcheck"))
(hsPkgs."temporary" or (errorHandler.buildDepError "temporary"))
(hsPkgs."text" or (errorHandler.buildDepError "text"))
];
buildable = true;
};
};
};
}
Loading

0 comments on commit d16c4b1

Please sign in to comment.