blob: 0046a0fd7cabf3b057190fdf6431414743ddfc38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{ mkDerivation, base, containers, either, exceptions, http-client
, mtl, natural-transformation, servant, servant-client
, servant-server, stdenv, thermoprint-spec, time, transformers
}:
mkDerivation {
pname = "thermoprint-client";
version = "2.0.0";
src = ./.;
libraryHaskellDepends = [
base containers either exceptions http-client mtl
natural-transformation servant servant-client servant-server
thermoprint-spec time transformers
];
homepage = "http://dirty-haskell.org/tags/thermoprint.html";
description = "Client for thermoprint-spec";
license = stdenv.lib.licenses.publicDomain;
}
|