nixpkgs/pkgs/development/compilers/vlang/default.nix
2023-11-06 21:52:27 +05:30

119 lines
3.0 KiB
Nix

{ lib, stdenv, fetchFromGitHub, glfw, freetype, openssl, makeWrapper, upx, boehmgc, xorg, binaryen, darwin }:
let
version = "weekly.2023.44";
ptraceSubstitution = ''
#include <sys/types.h>
#include <sys/ptrace.h>
'';
# Required for bootstrap.
vc = stdenv.mkDerivation {
pname = "v.c";
version = "unstable-2023-10-30";
src = fetchFromGitHub {
owner = "vlang";
repo = "vc";
rev = "66b89ab916c13c5781753797d1f4ff08e427bb6b";
hash = "sha256-5Y7/rlcoIHjbf79A1rqFysNFc5+p6CY09MRPQalo7Ak=";
};
# patch the ptrace reference for darwin
installPhase = lib.optionalString stdenv.isDarwin ''
substituteInPlace v.c \
--replace "#include <sys/ptrace.h>" "${ptraceSubstitution}"
'' + ''
mkdir -p $out
cp v.c $out/
'';
};
# Required for vdoc.
markdown = fetchFromGitHub {
owner = "vlang";
repo = "markdown";
rev = "61c47ea0a6c0c79e973a119dcbab3b8fdd0973ca";
hash = "sha256-XBD30Pc9CGXzU1Gy6U0pDpTozYVwfgAvZRjIsnXp8ZM=";
};
boehmgcStatic = boehmgc.override {
enableStatic = true;
};
in
stdenv.mkDerivation {
pname = "vlang";
inherit version;
src = fetchFromGitHub {
owner = "vlang";
repo = "v";
rev = version;
hash = "sha256-1yFuheSyKfvm4GqKIbXycdzKx3XcD9LSmmuKlcJmteg=";
};
propagatedBuildInputs = [ glfw freetype openssl ]
++ lib.optional stdenv.hostPlatform.isUnix upx;
nativeBuildInputs = [ makeWrapper ];
buildInputs = [
binaryen
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.Cocoa
] ++ lib.optionals stdenv.isLinux [
xorg.libX11
xorg.libXau
xorg.libXdmcp
xorg.xorgproto
];
makeFlags = [
"local=1"
];
env.VC = vc;
preBuild = ''
export HOME=$(mktemp -d)
mkdir -p ./thirdparty/tcc/lib
cp -r ${boehmgcStatic}/lib/* ./thirdparty/tcc/lib
'';
# vcreate_test.v requires git, so we must remove it when building the tools.
preInstall = ''
mv cmd/tools/vcreate/vcreate_test.v $HOME/vcreate_test.v
'';
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,lib,share}
cp -r examples $out/share
cp -r {cmd,vlib,thirdparty} $out/lib
cp v $out/lib
ln -s $out/lib/v $out/bin/v
wrapProgram $out/bin/v --prefix PATH : ${lib.makeBinPath [ stdenv.cc ]}
mkdir -p $HOME/.vmodules;
ln -sf ${markdown} $HOME/.vmodules/markdown
$out/lib/v -v build-tools
$out/lib/v -v $out/lib/cmd/tools/vdoc
$out/lib/v -v $out/lib/cmd/tools/vast
$out/lib/v -v $out/lib/cmd/tools/vvet
$out/lib/v -v $out/lib/cmd/tools/vcreate
runHook postInstall
'';
# Return vcreate_test.v and vtest.v, so the user can use it.
postInstall = ''
cp $HOME/vcreate_test.v $out/lib/cmd/tools/vcreate_test.v
'';
meta = with lib; {
homepage = "https://vlang.io/";
description = "Simple, fast, safe, compiled language for developing maintainable software";
license = licenses.mit;
maintainers = with maintainers; [ Madouura delta231 ];
mainProgram = "v";
platforms = platforms.all;
};
}