blob: 65e51db702638409fea06d1ee5694d269d081222 (
about) (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
{
lib,
stdenv,
fetchFromGitHub,
boost,
catch2_3,
cmake,
ninja,
fmt_11,
mimalloc,
python3,
}:
stdenv.mkDerivation rec {
pname = "sv-lang";
version = "7.0";
src = fetchFromGitHub {
owner = "MikePopoloski";
repo = "slang";
rev = "v${version}";
sha256 = "sha256-msSc6jw2xbEZfOwtqwFEDIKcwf5SDKp+j15lVbNO98g=";
};
postPatch = ''
substituteInPlace external/CMakeLists.txt \
--replace-fail 'set(mimalloc_min_version "2.1")' 'set(mimalloc_min_version "${lib.versions.majorMinor mimalloc.version}")'
'';
cmakeFlags = [
# fix for https://github.com/NixOS/nixpkgs/issues/144170
"-DCMAKE_INSTALL_INCLUDEDIR=include"
"-DCMAKE_INSTALL_LIBDIR=lib"
"-DSLANG_INCLUDE_TESTS=${if doCheck then "ON" else "OFF"}"
];
nativeBuildInputs = [
cmake
python3
ninja
];
buildInputs = [
boost
fmt_11
mimalloc
# though only used in tests, cmake will complain its absence when configuring
catch2_3
];
# TODO: a mysterious linker error occurs when building the unittests on darwin.
# The error occurs when using catch2_3 in nixpkgs, not when fetching catch2_3 using CMake
doCheck = !stdenv.hostPlatform.isDarwin;
meta = with lib; {
description = "SystemVerilog compiler and language services";
homepage = "https://github.com/MikePopoloski/slang";
license = licenses.mit;
maintainers = with maintainers; [ sharzy ];
mainProgram = "slang";
platforms = platforms.all;
broken = stdenv.hostPlatform.isDarwin;
};
}
|