Skip to content
Snippets Groups Projects
Commit cecbac7e authored by Daniel Firth's avatar Daniel Firth
Browse files

hint: init at 7803c34c8ae1d83c0f7c13fe6b30fcb3abd0ac51

parent 2c01c5b5
Branches
Tags
No related merge requests found
......@@ -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"
......
......@@ -1058,6 +1058,10 @@
, mapValue =
"cb70a83b40160c5206fe4f2bb548486e71f2ec461b3dbd0d3900c4bc638d5325"
}
, { mapKey = "hint"
, mapValue =
"d1be859e62cf62a0b7acaf11ba55820b0271db7943d64d968f6fb4678671f6e7"
}
, { mapKey = "hlint"
, mapValue =
"de9cc7a97e0a5b79de08dddedc2bbdc0645d93db23108656b43d5328ba50599a"
......
......@@ -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) { };
......
{ 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
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment