aboutsummaryrefslogtreecommitdiff
path: root/server/thermoprint-server.nix
blob: 4f61c499dc1d55aac1c687264194f2677224238a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkDerivation, base, data-default, dyre, stdenv, thermoprint-spec
}:
mkDerivation {
  pname = "thermoprint-server";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    base data-default dyre thermoprint-spec
  ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "Server for thermoprint-spec";
  license = stdenv.lib.licenses.publicDomain;
}