Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
2
Issue boards
Milestones
Wiki
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
package-sets
horizon-platform
Commits
1b36f17d
Commit
1b36f17d
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
trifecta: init at 2.1.2
parent
b9671d6e
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
manifest.dhall
+1
-0
1 addition, 0 deletions
manifest.dhall
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/trifecta.nix
+78
-0
78 additions, 0 deletions
pkgs/trifecta.nix
with
81 additions
and
0 deletions
manifest.dhall
+
1
−
0
View file @
1b36f17d
...
@@ -572,6 +572,7 @@ in [ callHackage "Cabal" "3.8.1.0"
...
@@ -572,6 +572,7 @@ in [ callHackage "Cabal" "3.8.1.0"
(Some "e212239b685e1ecf7ee95dd1e944cc563351907f")
(Some "e212239b685e1ecf7ee95dd1e944cc563351907f")
(None Text)
(None Text)
, callHackage "tls" "1.6.0"
, callHackage "tls" "1.6.0"
, callHackage "trifecta" "2.1.2"
, callHackage "typed-process" "0.2.10.1"
, callHackage "typed-process" "0.2.10.1"
, callHackage "type-errors-pretty" "0.0.1.2"
, callHackage "type-errors-pretty" "0.0.1.2"
, callHackage "type-errors" "0.2.0.0"
, callHackage "type-errors" "0.2.0.0"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
1b36f17d
...
@@ -767,6 +767,8 @@ final: prev: with pkgs.haskell.lib; {
...
@@ -767,6 +767,8 @@ final: prev: with pkgs.haskell.lib; {
tls
=
prev
.
callPackage
(
./pkgs/tls.nix
)
{
};
tls
=
prev
.
callPackage
(
./pkgs/tls.nix
)
{
};
trifecta
=
prev
.
callPackage
(
./pkgs/trifecta.nix
)
{
};
type-equality
=
prev
.
callPackage
(
./pkgs/type-equality.nix
)
{
};
type-equality
=
prev
.
callPackage
(
./pkgs/type-equality.nix
)
{
};
type-errors
=
prev
.
callPackage
(
./pkgs/type-errors.nix
)
{
};
type-errors
=
prev
.
callPackage
(
./pkgs/type-errors.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/trifecta.nix
0 → 100644
+
78
−
0
View file @
1b36f17d
{
mkDerivation
,
ansi-terminal
,
array
,
base
,
blaze-builder
,
blaze-html
,
blaze-markup
,
bytestring
,
charset
,
comonad
,
containers
,
deepseq
,
fingertree
,
ghc-prim
,
hashable
,
indexed-traversable
,
lens
,
lib
,
mtl
,
parsers
,
prettyprinter
,
prettyprinter-ansi-terminal
,
profunctors
,
QuickCheck
,
reducers
,
transformers
,
unordered-containers
,
utf8-string
}:
mkDerivation
{
pname
=
"trifecta"
;
version
=
"2.1.2"
;
sha256
=
"8a3a4e3367f6b62152dd4f75c52f9972082c31ed0c24a7e1d27cea574d457daa"
;
revision
=
"1"
;
editedCabalFile
=
"0a7cfbd04w3zbm234mmpib9mxar46ra5xvb62gcnbmixr7b343j9"
;
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
ansi-terminal
array
base
blaze-builder
blaze-html
blaze-markup
bytestring
charset
comonad
containers
deepseq
fingertree
ghc-prim
hashable
indexed-traversable
lens
mtl
parsers
prettyprinter
prettyprinter-ansi-terminal
profunctors
reducers
transformers
unordered-containers
utf8-string
];
testHaskellDepends
=
[
base
parsers
QuickCheck
];
enableLibraryProfiling
=
false
;
enableExecutableProfiling
=
false
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"http://github.com/ekmett/trifecta/"
;
description
=
"A modern parser combinator library with convenient diagnostics"
;
license
=
lib
.
licenses
.
bsd3
;
broken
=
false
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment