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
|
{ 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
];
testToolDepends = [ llvm-config ];
homepage = "https://github.com/luc-tielen/llvm-codegen";
license = lib.licenses.bsd3;
}
|