aboutsummaryrefslogtreecommitdiff
path: root/client/thermoprint-client.nix
blob: 7f836301247ea4154763b3f725cc9b49df1b41c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, base, containers, either, exceptions, http-client
, mtl, 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 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;
}