Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
horizon-platform
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
Théophile Choutri
horizon-platform
Commits
cecbac7e
Commit
cecbac7e
authored
1 year ago
by
Daniel Firth
Browse files
Options
Downloads
Patches
Plain Diff
hint: init at 7803c34c8ae1d83c0f7c13fe6b30fcb3abd0ac51
parent
2c01c5b5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
horizon.dhall
+1
-0
1 addition, 0 deletions
horizon.dhall
horizon.lock
+4
-0
4 additions, 0 deletions
horizon.lock
overlay.nix
+2
-0
2 additions, 0 deletions
overlay.nix
pkgs/hint.nix
+36
-0
36 additions, 0 deletions
pkgs/hint.nix
with
43 additions
and
0 deletions
horizon.dhall
+
1
−
0
View file @
cecbac7e
...
...
@@ -352,6 +352,7 @@ let packages =
, hie-compat = H.callHackage "hie-compat" "0.3.1.0"
, hiedb = H.callHackage "hiedb" "0.4.3.0"
, hinotify = H.callHackage "hinotify" "0.4.1"
, hint = H.callGit "https://github.com/haskell-hint/hint" "7803c34c8ae1d83c0f7c13fe6b30fcb3abd0ac51" (None H.Subdir)
, hlint = H.callHackage "hlint" "3.5"
, hls-alternate-number-format-plugin =
H.callHackage "hls-alternate-number-format-plugin" "1.3.0.0"
...
...
This diff is collapsed.
Click to expand it.
horizon.lock
+
4
−
0
View file @
cecbac7e
...
...
@@ -1058,6 +1058,10 @@
, mapValue =
"cb70a83b40160c5206fe4f2bb548486e71f2ec461b3dbd0d3900c4bc638d5325"
}
, { mapKey = "hint"
, mapValue =
"d1be859e62cf62a0b7acaf11ba55820b0271db7943d64d968f6fb4678671f6e7"
}
, { mapKey = "hlint"
, mapValue =
"de9cc7a97e0a5b79de08dddedc2bbdc0645d93db23108656b43d5328ba50599a"
...
...
This diff is collapsed.
Click to expand it.
overlay.nix
+
2
−
0
View file @
cecbac7e
...
...
@@ -531,6 +531,8 @@ final: prev: with pkgs.haskell.lib; {
hinotify
=
final
.
callPackage
(
./pkgs/hinotify.nix
)
{
};
hint
=
final
.
callPackage
(
./pkgs/hint.nix
)
{
};
hlint
=
final
.
callPackage
(
./pkgs/hlint.nix
)
{
};
hls-alternate-number-format-plugin
=
final
.
callPackage
(
./pkgs/hls-alternate-number-format-plugin.nix
)
{
};
...
...
This diff is collapsed.
Click to expand it.
pkgs/hint.nix
0 → 100644
+
36
−
0
View file @
cecbac7e
{
mkDerivation
,
HUnit
,
base
,
bytestring
,
containers
,
directory
,
exceptions
,
fetchgit
,
filepath
,
ghc
,
ghc-boot
,
ghc-paths
,
lib
,
random
,
stm
,
temporary
,
text
,
transformers
,
typed-process
,
unix
}:
mkDerivation
{
pname
=
"hint"
;
version
=
"0.9.0.6"
;
src
=
fetchgit
{
url
=
"https://github.com/haskell-hint/hint"
;
sha256
=
"0q18j3axi166k5k8mbcvdqy27cdvmxbhyb9rkjb3k31i5apaqnv4"
;
rev
=
"7803c34c8ae1d83c0f7c13fe6b30fcb3abd0ac51"
;
fetchSubmodules
=
true
;
};
isLibrary
=
true
;
isExecutable
=
false
;
enableSeparateDataOutput
=
false
;
libraryHaskellDepends
=
[
base
containers
directory
exceptions
filepath
ghc
ghc-boot
ghc-paths
random
temporary
transformers
unix
];
testHaskellDepends
=
[
base
bytestring
containers
directory
exceptions
filepath
HUnit
stm
text
typed-process
unix
];
enableLibraryProfiling
=
true
;
enableExecutableProfiling
=
true
;
doHaddock
=
false
;
jailbreak
=
true
;
doCheck
=
false
;
doBenchmark
=
false
;
hyperlinkSource
=
false
;
homepage
=
"https://github.com/haskell-hint/hint"
;
description
=
"A Haskell interpreter built on top of the GHC API"
;
license
=
lib
.
licenses
.
bsd3
;
broken
=
false
;
}
\ No newline at end of file
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