Newer
Older
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ mkDerivation, Cabal, array, base, bytestring, clash-lib
, clash-prelude, concurrent-supply, containers, data-binary-ieee754
, deepseq, directory, exceptions, extra, fetchgit, filepath, ghc
, ghc-bignum, ghc-boot, ghc-prim, ghc-typelits-extra
, ghc-typelits-knownnat, ghc-typelits-natnormalise, ghci, hashable
, haskeline, lens, lib, mtl, primitive, process, reflection, split
, template-haskell, text, time, transformers, uniplate, unix
, unordered-containers, utf8-string, vector
}:
mkDerivation {
pname = "clash-ghc";
version = "1.7.0";
src = fetchgit {
url = "https://github.com/clash-lang/clash-compiler";
sha256 = "1myvhkbw93gqsq9kyk7anbvvrn4c45bw99sr8l2486nb6svkwabh";
rev = "8bfb4ec58543e14e968e2c336594a529565996c2";
fetchSubmodules = true;
};
postUnpack = "sourceRoot+=/clash-ghc/; echo source root reset to $sourceRoot";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
array base bytestring Cabal clash-lib clash-prelude
concurrent-supply containers data-binary-ieee754 deepseq directory
exceptions extra filepath ghc ghc-bignum ghc-boot ghc-prim
ghc-typelits-extra ghc-typelits-knownnat ghc-typelits-natnormalise
ghci hashable haskeline lens mtl primitive process reflection split
template-haskell text time transformers uniplate unix
unordered-containers utf8-string vector
];
executableHaskellDepends = [ base ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://clash-lang.org/";
description = "Clash: a functional hardware description language - GHC frontend";
license = lib.licenses.bsd2;
broken = false;
}