about summary refs log tree commit diff
path: root/pkgs/development/misc/haskell/hasura/graphql-parser.nix
blob: a447ac0154015f490414489d1f6be66e54eea1bb (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 = "0zqrh7y0cjjrscsw2hmyhdcm4nzvb5pw394pcxk8q19xx13jp9xd";
    rev = "43562a5b7b41d380e3e31732b48637702e5aa97d";
    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 ];
}