summary refs log tree commit diff
path: root/pkgs/development/misc/haskell/hasura/ci-info/default.nix
blob: 55b070a9f7730790e649ee646a84aefbc026f1d2 (plain) (blame)
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, lib, 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 = lib.licenses.mit;
}