aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/servers/hasura/ci-info.nix
blob: 53c85a2e5ba198d7704cd2382bd2d8e1999633d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ 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;
}