aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/servers/hasura/graphql-parser.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/hasura/graphql-parser.nix')
-rw-r--r--nixpkgs/pkgs/servers/hasura/graphql-parser.nix35
1 files changed, 0 insertions, 35 deletions
diff --git a/nixpkgs/pkgs/servers/hasura/graphql-parser.nix b/nixpkgs/pkgs/servers/hasura/graphql-parser.nix
deleted file mode 100644
index 8066bb83dd0..00000000000
--- a/nixpkgs/pkgs/servers/hasura/graphql-parser.nix
+++ /dev/null
@@ -1,35 +0,0 @@
-{ mkDerivation, aeson, attoparsec, base, bytestring, containers
-, criterion, fetchgit, filepath, hedgehog, hpack, prettyprinter
-, protolude, regex-tdfa, scientific, stdenv, template-haskell, text
-, text-builder, th-lift-instances, unordered-containers, vector
-}:
-mkDerivation {
- pname = "graphql-parser";
- version = "0.1.0.0";
- src = fetchgit {
- url = "https://github.com/hasura/graphql-parser-hs.git";
- sha256 = "0vz0sqqmr1l02d3f1pc5k7rm7vpxmg5d5ijvdcwdm34yw6x5lz1v";
- rev = "623ad78aa46e7ba2ef1aa58134ad6136b0a85071";
- fetchSubmodules = true;
- };
- libraryHaskellDepends = [
- aeson attoparsec base bytestring containers filepath hedgehog
- prettyprinter protolude regex-tdfa scientific template-haskell text
- text-builder th-lift-instances unordered-containers vector
- ];
- libraryToolDepends = [ hpack ];
- testHaskellDepends = [
- aeson attoparsec base bytestring containers filepath hedgehog
- prettyprinter protolude regex-tdfa scientific template-haskell text
- text-builder th-lift-instances unordered-containers vector
- ];
- benchmarkHaskellDepends = [
- aeson attoparsec base bytestring containers criterion filepath
- hedgehog prettyprinter protolude regex-tdfa scientific
- template-haskell text text-builder th-lift-instances
- unordered-containers vector
- ];
- prePatch = "hpack";
- homepage = "https://github.com/hasura/graphql-parser-hs#readme";
- license = stdenv.lib.licenses.bsd3;
-}