aboutsummaryrefslogtreecommitdiff
path: root/client/thermoprint-client.nix
blob: 6471b06995dea14f5682842547dcde95b0c7dd29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ mkDerivation, base, containers, either, exceptions, servant
, servant-client, servant-server, stdenv, thermoprint-spec, time
, transformers
}:
mkDerivation {
  pname = "thermoprint-client";
  version = "0.0.0";
  src = ./.;
  libraryHaskellDepends = [
    base containers either exceptions 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;
}