dhall-haskell/nix/rope-utf16-splay.nix
Frederik Ramcke 523861a92c dhall-lsp-server: Upgrade to haskell-lsp 0.15 (#1203)
* Clean up dhall-lsp-server.cabal

Removes unused dependencies.

* Upgrade to haskell-lsp-0.15.0.0

The stackage LTS version is still 0.8.2 so we need to add this as an
'extra-dep'.

* Display type information as plaintext rather than markdown

* Fix nix build

* Update nix haskell-lsp-types
2019-08-07 11:40:43 +00:00

16 lines
558 B
Nix

{ mkDerivation, base, QuickCheck, stdenv, tasty, tasty-hunit
, tasty-quickcheck, text
}:
mkDerivation {
pname = "rope-utf16-splay";
version = "0.3.1.0";
sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6";
libraryHaskellDepends = [ base text ];
testHaskellDepends = [
base QuickCheck tasty tasty-hunit tasty-quickcheck text
];
homepage = "https://github.com/ollef/rope-utf16-splay";
description = "Ropes optimised for updating using UTF-16 code units and row/column pairs";
license = stdenv.lib.licenses.bsd3;
}