summary refs log tree commit diff
path: root/haskell/pkgs/llvm-codegen.nix
blob: 76e6a8d7503e5a4087f3bfe74cea374f2171a804 (plain)
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
{ mkDerivation, base, bytestring, Cabal, containers, dlist
, fetchgit, ghc-prim, hspec, hspec-hedgehog, lib, llvm-config
, mmorph, mtl, neat-interpolation, text, text-builder-linear
}:
mkDerivation {
  pname = "llvm-codegen";
  version = "0.1.0.0";
  src = fetchgit {
    url = "https://github.com/luc-tielen/llvm-codegen";
    sha256 = "0d9xj25anjznxjmpmjkgd4d8s463akvn3h61y8wq5mzab24jq2b1";
    rev = "83b04cb576208ea74ddd62016e4fa03f0df138ac";
    fetchSubmodules = true;
  };
  setupHaskellDepends = [ base Cabal containers ];
  libraryHaskellDepends = [
    base bytestring containers dlist ghc-prim mmorph mtl text
    text-builder-linear
  ];
  libraryToolDepends = [ llvm-config ];
  testHaskellDepends = [
    base bytestring containers dlist ghc-prim hspec hspec-hedgehog
    mmorph mtl neat-interpolation text text-builder-linear
  ];
  doHaddock = false;
  testToolDepends = [ llvm-config ];
  homepage = "https://github.com/luc-tielen/llvm-codegen";
  license = lib.licenses.bsd3;
}