aboutsummaryrefslogtreecommitdiff
path: root/spec/thermoprint-spec.nix
blob: 6d94ef6b1efe1e452930d0538a95e61b666e3414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation, aeson, base, base64-bytestring, bytestring, Cabal
, cabal-test-quickcheck, containers, deepseq, encoding, hspec
, persistent, QuickCheck, quickcheck-instances, servant, stdenv
, text
}:
mkDerivation {
  pname = "thermoprint-spec";
  version = "3.0.0";
  src = ./.;
  libraryHaskellDepends = [
    aeson base base64-bytestring bytestring Cabal cabal-test-quickcheck
    containers deepseq encoding persistent QuickCheck
    quickcheck-instances servant text
  ];
  testHaskellDepends = [
    aeson base hspec QuickCheck quickcheck-instances
  ];
  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;
}