blob: 82f018ad78031f76f8fb47f21092ef2a767455f8 (
plain)
1
2
3
4
5
6
7
8
9
10
|
{ mkDerivation, base, bytestring, containers, stdenv, text, QuickCheck, quickcheck-instances, cabal-test-quickcheck, hspec }:
mkDerivation {
pname = "thermoprint-spec";
version = "1.0.0";
src = ./.;
libraryHaskellDepends = [ base bytestring containers text QuickCheck quickcheck-instances cabal-test-quickcheck hspec ];
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;
}
|