dhall-haskell/nix/haskell-lsp-types.nix
2019-03-10 09:43:44 -07:00

17 lines
624 B
Nix

{ mkDerivation, aeson, base, bytestring, data-default, filepath
, hashable, lens, network-uri, scientific, stdenv, text
, unordered-containers
}:
mkDerivation {
pname = "haskell-lsp-types";
version = "0.8.0.1";
sha256 = "c8a3fec8c38ebe7da931e14e9b0381acde33882d2a46ced5ece5fe9fb133f033";
libraryHaskellDepends = [
aeson base bytestring data-default filepath hashable lens
network-uri scientific text unordered-containers
];
homepage = "https://github.com/alanz/haskell-lsp";
description = "Haskell library for the Microsoft Language Server Protocol, data types";
license = stdenv.lib.licenses.mit;
}