-
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
Nov 10, 2024
1 parent
8e907f7
commit 74f041b
Showing
26 changed files
with
1,095 additions
and
3 deletions.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
...icroCabal-0.3.1.0-r0-3a49b94c49f15f8051b05f6d3ad5cddef4a1cada96982f7e7b55f8622a23fc10.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 = "3.0"; | ||
identifier = { name = "MicroCabal"; version = "0.3.1.0"; }; | ||
license = "Apache-2.0"; | ||
copyright = "2024 Lennart Augustsson"; | ||
maintainer = "[email protected]"; | ||
author = "[email protected]"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "A partial Cabal replacement"; | ||
description = "A portable subset of the Cabal functionality."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
exes = { | ||
"mcabal" = { | ||
depends = pkgs.lib.optionals (compiler.isGhc && true) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."directory" or (errorHandler.buildDepError "directory")) | ||
(hsPkgs."process" or (errorHandler.buildDepError "process")) | ||
] ++ pkgs.lib.optional (compiler.isMhs && true) (hsPkgs."base" or (errorHandler.buildDepError "base")); | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
37 changes: 37 additions & 0 deletions
37
...icroCabal-0.3.1.1-r0-b4fd2ca02d62d404e39fd394a8429a444d4b38336cec59d877f60c429169b551.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 = "3.0"; | ||
identifier = { name = "MicroCabal"; version = "0.3.1.1"; }; | ||
license = "Apache-2.0"; | ||
copyright = "2024 Lennart Augustsson"; | ||
maintainer = "[email protected]"; | ||
author = "[email protected]"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "A partial Cabal replacement"; | ||
description = "A portable subset of the Cabal functionality."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
exes = { | ||
"mcabal" = { | ||
depends = pkgs.lib.optionals (compiler.isGhc && true) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."directory" or (errorHandler.buildDepError "directory")) | ||
(hsPkgs."process" or (errorHandler.buildDepError "process")) | ||
] ++ pkgs.lib.optional (compiler.isMhs && true) (hsPkgs."base" or (errorHandler.buildDepError "base")); | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
42 changes: 42 additions & 0 deletions
42
.../MicroHs-0.10.4.1-r0-19e1347ebfaaf3844269e0a125f47ddbcc210dee8763c1d3b448fe2058988ad7.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,42 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "3.0"; | ||
identifier = { name = "MicroHs"; version = "0.10.4.1"; }; | ||
license = "Apache-2.0"; | ||
copyright = "2023,2024 Lennart Augustsson"; | ||
maintainer = "[email protected]"; | ||
author = "[email protected]"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "A small compiler for Haskell"; | ||
description = "A compiler for an extended subset of Haskell-2010.\nThe compiler translates to combinators and can compile itself."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
exes = { | ||
"mhs" = { | ||
depends = pkgs.lib.optionals (compiler.isGhc && true) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) | ||
(hsPkgs."ghc-prim" or (errorHandler.buildDepError "ghc-prim")) | ||
(hsPkgs."haskeline" or (errorHandler.buildDepError "haskeline")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."process" or (errorHandler.buildDepError "process")) | ||
(hsPkgs."directory" or (errorHandler.buildDepError "directory")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
] ++ pkgs.lib.optional (compiler.isMhs && true) (hsPkgs."base" or (errorHandler.buildDepError "base")); | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
61 changes: 61 additions & 0 deletions
61
...d-summary-0.2.0.0-r0-e051d6ab4f3e3d554598aaf54eab4707ce56cded02e6fd4c8a185f7357414d02.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,61 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "3.0"; | ||
identifier = { name = "aws-spend-summary"; version = "0.2.0.0"; }; | ||
license = "GPL-2.0-only"; | ||
copyright = "(c) 2024 Daniel Rolls"; | ||
maintainer = "[email protected]"; | ||
author = "Daniel Rolls"; | ||
homepage = ""; | ||
url = ""; | ||
synopsis = "Extract recent daily AWS costs"; | ||
description = "Please see the README on GitHub at <https://github.com/danielrolls/aws-spend-summary>"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."amazonka" or (errorHandler.buildDepError "amazonka")) | ||
(hsPkgs."amazonka-core" or (errorHandler.buildDepError "amazonka-core")) | ||
(hsPkgs."amazonka-s3" or (errorHandler.buildDepError "amazonka-s3")) | ||
(hsPkgs."ansi-terminal" or (errorHandler.buildDepError "ansi-terminal")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."cassava" or (errorHandler.buildDepError "cassava")) | ||
(hsPkgs."conduit" or (errorHandler.buildDepError "conduit")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."http-types" or (errorHandler.buildDepError "http-types")) | ||
(hsPkgs."lens" or (errorHandler.buildDepError "lens")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."timelens" or (errorHandler.buildDepError "timelens")) | ||
(hsPkgs."vector" or (errorHandler.buildDepError "vector")) | ||
(hsPkgs."zlib" or (errorHandler.buildDepError "zlib")) | ||
]; | ||
buildable = true; | ||
}; | ||
exes = { | ||
"aws-spend-summary" = { | ||
depends = [ | ||
(hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) | ||
(hsPkgs."text" or (errorHandler.buildDepError "text")) | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."aws-spend-summary" or (errorHandler.buildDepError "aws-spend-summary")) | ||
(hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
96 changes: 96 additions & 0 deletions
96
...ge/cgi-3001.5.0.1-r3-2a291e043a1c28d668219f29fe00f82ef3221b2d20ae761ccc0c90d1708c41d0.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,96 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = { install-examples = false; }; | ||
package = { | ||
specVersion = "1.10"; | ||
identifier = { name = "cgi"; version = "3001.5.0.1"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "Bjorn Bringert, John Chee, Andy Gill, Anders Kaseorg,\nIan Lynagh, Erik Meijer, Sven Panne, Jeremy Shaw, Peter Simons"; | ||
maintainer = "John Chee <[email protected]>, Peter Simons <[email protected]>"; | ||
author = "Bjorn Bringert"; | ||
homepage = "https://github.com/cheecheeo/haskell-cgi"; | ||
url = ""; | ||
synopsis = "A library for writing CGI programs"; | ||
description = "This is a Haskell library for writing CGI programs."; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
"library" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."containers" or (errorHandler.buildDepError "containers")) | ||
(hsPkgs."exceptions" or (errorHandler.buildDepError "exceptions")) | ||
(hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) | ||
(hsPkgs."multipart" or (errorHandler.buildDepError "multipart")) | ||
(hsPkgs."network-uri" or (errorHandler.buildDepError "network-uri")) | ||
(hsPkgs."parsec" or (errorHandler.buildDepError "parsec")) | ||
(hsPkgs."time" or (errorHandler.buildDepError "time")) | ||
(hsPkgs."xhtml" or (errorHandler.buildDepError "xhtml")) | ||
]; | ||
buildable = true; | ||
}; | ||
exes = { | ||
"cookie.cgi" = { | ||
depends = pkgs.lib.optionals (flags.install-examples) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi")) | ||
(hsPkgs."xhtml" or (errorHandler.buildDepError "xhtml")) | ||
]; | ||
buildable = if flags.install-examples then true else false; | ||
}; | ||
"error.cgi" = { | ||
depends = pkgs.lib.optionals (flags.install-examples) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi")) | ||
]; | ||
buildable = if flags.install-examples then true else false; | ||
}; | ||
"hello.cgi" = { | ||
depends = pkgs.lib.optionals (flags.install-examples) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi")) | ||
]; | ||
buildable = if flags.install-examples then true else false; | ||
}; | ||
"printinput.cgi" = { | ||
depends = pkgs.lib.optionals (flags.install-examples) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi")) | ||
]; | ||
buildable = if flags.install-examples then true else false; | ||
}; | ||
"redirect.cgi" = { | ||
depends = pkgs.lib.optionals (flags.install-examples) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi")) | ||
]; | ||
buildable = if flags.install-examples then true else false; | ||
}; | ||
"showAllInputs.cgi" = { | ||
depends = pkgs.lib.optionals (flags.install-examples) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi")) | ||
]; | ||
buildable = if flags.install-examples then true else false; | ||
}; | ||
"upload.cgi" = { | ||
depends = pkgs.lib.optionals (flags.install-examples) [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) | ||
(hsPkgs."cgi" or (errorHandler.buildDepError "cgi")) | ||
(hsPkgs."xhtml" or (errorHandler.buildDepError "xhtml")) | ||
]; | ||
buildable = if flags.install-examples then true else false; | ||
}; | ||
}; | ||
}; | ||
} |
44 changes: 44 additions & 0 deletions
44
...age/crackNum-3.15-r0-eb67cca3eb2bd6e7e0f54121413eebbfb06314a26ea89991d01ff4280a349b19.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,44 @@ | ||
{ system | ||
, compiler | ||
, flags | ||
, pkgs | ||
, hsPkgs | ||
, pkgconfPkgs | ||
, errorHandler | ||
, config | ||
, ... }: | ||
{ | ||
flags = {}; | ||
package = { | ||
specVersion = "2.2"; | ||
identifier = { name = "crackNum"; version = "3.15"; }; | ||
license = "BSD-3-Clause"; | ||
copyright = "Levent Erkok"; | ||
maintainer = "[email protected]"; | ||
author = "Levent Erkok"; | ||
homepage = "http://github.com/LeventErkok/CrackNum"; | ||
url = ""; | ||
synopsis = "Crack various integer and floating-point data formats"; | ||
description = "Crack IEEE-754 float formats and arbitrary sized words and integers, showing the layout.\n\nFor details, please see: <http://github.com/LeventErkok/crackNum/>"; | ||
buildType = "Simple"; | ||
}; | ||
components = { | ||
exes = { | ||
"crackNum" = { | ||
depends = [ | ||
(hsPkgs."base" or (errorHandler.buildDepError "base")) | ||
(hsPkgs."libBF" or (errorHandler.buildDepError "libBF")) | ||
(hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) | ||
(hsPkgs."sbv" or (errorHandler.buildDepError "sbv")) | ||
(hsPkgs."tasty" or (errorHandler.buildDepError "tasty")) | ||
(hsPkgs."tasty-golden" or (errorHandler.buildDepError "tasty-golden")) | ||
(hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) | ||
(hsPkgs."directory" or (errorHandler.buildDepError "directory")) | ||
(hsPkgs."process" or (errorHandler.buildDepError "process")) | ||
(hsPkgs."deepseq" or (errorHandler.buildDepError "deepseq")) | ||
]; | ||
buildable = true; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.