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

ghcid: init at 0.8.8

parent 8fc4d68e
Branches
Tags
No related merge requests found
......@@ -173,6 +173,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "ghc-lib-parser-ex" "9.4.0.0"
, callHackage "ghc-paths" "0.1.0.12"
, callHackage "ghc-tcplugins-extra" "0.4.3"
, callHackage "ghcid" "0.8.8"
, callHackage "hackage-security" "0.6.2.2"
, callHackage "hashable" "1.4.1.0"
, callHackage "hashing" "0.1.0.1"
......
......@@ -181,6 +181,8 @@ final: prev: with pkgs.haskell.lib; {
ghc-tcplugins-extra = prev.callPackage (./pkgs/ghc-tcplugins-extra.nix) { };
ghcid = prev.callPackage (./pkgs/ghcid.nix) { };
hackage-security = prev.callPackage (./pkgs/hackage-security.nix) { };
hashable = prev.callPackage (./pkgs/hashable.nix) { };
......
{ mkDerivation, ansi-terminal, base, cmdargs, containers, directory
, extra, filepath, fsnotify, lib, process, tasty, tasty-hunit
, terminal-size, time, unix
}:
mkDerivation {
pname = "ghcid";
version = "0.8.8";
sha256 = "92c96e439dd1e0b760181d17ac2ff84f96d0d4871c2f03296a3278095ec858f8";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-terminal base cmdargs directory extra filepath process time
];
executableHaskellDepends = [
ansi-terminal base cmdargs containers directory extra filepath
fsnotify process terminal-size time unix
];
testHaskellDepends = [
ansi-terminal base cmdargs containers directory extra filepath
fsnotify process tasty tasty-hunit terminal-size time unix
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/ndmitchell/ghcid#readme";
description = "GHCi based bare bones IDE";
license = lib.licenses.bsd3;
mainProgram = "ghcid";
}
\ 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