b6d97fd731
GitOrigin-RevId: be0b453d7c7eee2090962c9a83749b024ff9acf5
32 lines
1.2 KiB
Nix
32 lines
1.2 KiB
Nix
{ mkDerivation, aeson, base, checkers, containers, deepseq
|
|
, directory, extra, fetchgit, filepath, fingertree, generic-lens
|
|
, ghc, ghc-boot-th, ghc-exactprint, ghc-source-gen, ghcide
|
|
, haskell-lsp, hie-bios, hls-plugin-api, hspec, hspec-discover
|
|
, lens, mtl, QuickCheck, refinery, retrie, shake, stdenv, syb, text
|
|
, transformers
|
|
}:
|
|
mkDerivation {
|
|
pname = "hls-tactics-plugin";
|
|
version = "0.5.1.0";
|
|
src = fetchgit {
|
|
url = "https://github.com/haskell/haskell-language-server.git";
|
|
sha256 = "0gkzvjx4dgf53yicinqjshlj80gznx5khb62i7g3kqjr85iy0raa";
|
|
rev = "e4f677e1780fe85a02b99a09404a0a3c3ab5ce7c";
|
|
fetchSubmodules = true;
|
|
};
|
|
postUnpack = "sourceRoot+=/plugins/tactics; echo source root reset to $sourceRoot";
|
|
libraryHaskellDepends = [
|
|
aeson base containers deepseq directory extra filepath fingertree
|
|
generic-lens ghc ghc-boot-th ghc-exactprint ghc-source-gen ghcide
|
|
haskell-lsp hls-plugin-api lens mtl refinery retrie shake syb text
|
|
transformers
|
|
];
|
|
testHaskellDepends = [
|
|
base checkers containers ghc hie-bios hls-plugin-api hspec mtl
|
|
QuickCheck
|
|
];
|
|
testToolDepends = [ hspec-discover ];
|
|
description = "Tactics plugin for Haskell Language Server";
|
|
license = "unknown";
|
|
hydraPlatforms = stdenv.lib.platforms.none;
|
|
}
|