about summary refs log tree commit diff
path: root/pkgs/development/misc/haskell/hasura/graphql-parser.nix
blob: 0033584a15938cded240820d3a6e4dc1eae9a2b3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# This has been automatically generated by the script
# ./update.sh.  This should not be changed by hand.
{ mkDerivation, aeson, attoparsec, base, bytestring, containers
, criterion, deepseq, fetchgit, filepath, hashable, hedgehog, lib
, prettyprinter, scientific, template-haskell, text, text-builder
, th-lift-instances, unordered-containers, vector
}:
mkDerivation {
  pname = "graphql-parser";
  version = "0.2.0.0";
  src = fetchgit {
    url = "https://github.com/hasura/graphql-parser-hs.git";
    sha256 = "015b1h475k8wmhm9hkrvyxr985x7d8yc0xgcdqj7vmziixvfwwwj";
    rev = "79beb0e85e00422a8a15318c0bc573765fc7b246";
    fetchSubmodules = true;
  };
  libraryHaskellDepends = [
    aeson attoparsec base bytestring containers deepseq filepath
    hashable hedgehog prettyprinter scientific template-haskell text
    text-builder th-lift-instances unordered-containers vector
  ];
  testHaskellDepends = [
    attoparsec base bytestring hedgehog prettyprinter scientific text
    text-builder
  ];
  benchmarkHaskellDepends = [
    base bytestring criterion prettyprinter text text-builder
  ];
  homepage = "https://github.com/hasura/graphql-parser-hs";
  description = "A native Haskell GraphQL parser";
  license = lib.licenses.bsd3;
  maintainers = with lib.maintainers; [ lassulus ];
}