about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/hasura/ci-info.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/hasura/ci-info.nix')
-rw-r--r--nixpkgs/pkgs/servers/hasura/ci-info.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/nixpkgs/pkgs/servers/hasura/ci-info.nix b/nixpkgs/pkgs/servers/hasura/ci-info.nix
deleted file mode 100644
index 53c85a2e5ba1..000000000000
--- a/nixpkgs/pkgs/servers/hasura/ci-info.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-{ mkDerivation, aeson, aeson-casing, base, fetchgit, hashable
-, hpack, stdenv, template-haskell, text, th-lift-instances
-, unordered-containers
-}:
-mkDerivation {
-  pname = "ci-info";
-  version = "0.1.0.0";
-  src = fetchgit {
-    url = "https://github.com/hasura/ci-info-hs.git";
-    sha256 = "0rn1799z4y7z1c6ijrr0gscarg25zmnfq0z9rrmk4ad727vf1ppc";
-    rev = "6af5a68450347a02295a9cd050d05a8b2f5c06ab";
-    fetchSubmodules = true;
-  };
-  libraryHaskellDepends = [
-    aeson aeson-casing base hashable template-haskell text
-    th-lift-instances unordered-containers
-  ];
-  libraryToolDepends = [ hpack ];
-  prePatch = "hpack";
-  homepage = "https://github.com/hasura/ci-info-hs#readme";
-  license = stdenv.lib.licenses.mit;
-}