Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-plutus
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
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-plutus
Commits
f2c1b487
Commit
f2c1b487
authored
2 years ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
fmt: init at 0.6.3.0
parent
4bff5587
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
horizon.dhall
+1
-0
1 addition, 0 deletions
horizon.dhall
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/fmt.nix
+77
-0
77 additions, 0 deletions
pkgs/fmt.nix
with
80 additions
and
0 deletions
horizon.dhall
+
1
−
0
View file @
f2c1b487
...
...
@@ -192,6 +192,7 @@ let otherLibraries =
"https://github.com/Quid2/flat"
"2121ee96201e39764e3a6fcbc53241afb0050647"
(None H.Subdir)
, H.callHackage "fmt" "0.6.3.0"
, H.callHackage "generic-arbitrary" "1.0.1"
, H.callHackage "generic-data" "1.0.0.0"
, H.callHackage "generic-lens" "2.2.1.0"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
f2c1b487
...
...
@@ -145,6 +145,8 @@ final: prev: with pkgs.haskell.lib; {
flat
=
final
.
callPackage
(
./pkgs/flat.nix
)
{
};
fmt
=
final
.
callPackage
(
./pkgs/fmt.nix
)
{
};
generic-arbitrary
=
final
.
callPackage
(
./pkgs/generic-arbitrary.nix
)
{
};
generic-data
=
final
.
callPackage
(
./pkgs/generic-data.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/fmt.nix
0 → 100644
+
77
−
0
View file @
f2c1b487
{
mkDerivation
,
QuickCheck
,
base
,
base64-bytestring
,
bytestring
,
call-stack
,
containers
,
criterion
,
deepseq
,
doctest
,
doctest-discover
,
formatting
,
hspec
,
interpolate
,
lib
,
microlens
,
neat-interpolation
,
text
,
time
,
time-locale-compat
,
vector
}:
mkDerivation
{
pname
=
"fmt"
;
version
=
"0.6.3.0"
;
sha256
=
"b4ee7f3da97223bfef589264e7945160521f6e3323f64a2118bdec96cc04b006"
;
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
base
base64-bytestring
bytestring
call-stack
containers
formatting
microlens
text
time
time-locale-compat
];
testHaskellDepends
=
[
base
bytestring
call-stack
containers
doctest
hspec
neat-interpolation
QuickCheck
text
vector
];
testToolDepends
=
[
doctest-discover
];
benchmarkHaskellDepends
=
[
base
bytestring
containers
criterion
deepseq
formatting
interpolate
text
vector
];
enableLibraryProfiling
=
true
;
enableExecutableProfiling
=
true
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"http://github.com/cdornan/fmt"
;
description
=
"A new formatting library"
;
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