aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.nix
blob: 2d1814ecafc3b61858e7710607d6826d019390bf (plain)
1
2
3
4
5
6
7
8
9
10
{ mkDerivation, base, stdenv }:
mkDerivation {
  pname = "thermoprint-spec";
  version = "1.0.0";
  src = ./.;
  libraryHaskellDepends = [ base ];
  homepage = "http://dirty-haskell.org/tags/thermoprint.html";
  description = "A specification of the API and the payload datatypes and associated utilities";
  license = stdenv.lib.licenses.publicDomain;
}