2021-02-05 17:12:51 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, glfw, freetype, openssl, upx ? null }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
assert stdenv.hostPlatform.isUnix -> upx != null;
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "vlang";
|
2021-06-28 23:13:55 +00:00
|
|
|
version = "weekly.2021.25";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "vlang";
|
|
|
|
repo = "v";
|
|
|
|
rev = version;
|
2021-06-28 23:13:55 +00:00
|
|
|
sha256 = "0y4a5rmpcdqina32d6azbmsbi3zqqfl413sicg72x6a1pm2vg33j";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# V compiler source translated to C for bootstrap.
|
|
|
|
# Use matching v.c release commit for now, 0.1.21 release is not available.
|
|
|
|
vc = fetchFromGitHub {
|
|
|
|
owner = "vlang";
|
|
|
|
repo = "vc";
|
2021-06-28 23:13:55 +00:00
|
|
|
rev = "3201d2dd2faadfa370da0bad2a749a664ad5ade3";
|
|
|
|
sha256 = "0xzkjdph5wfjr3qfkihgc27vsbbjh2l31rp8z2avq9hc531hwvrz";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ glfw freetype openssl ]
|
2021-02-05 17:12:51 +00:00
|
|
|
++ lib.optional stdenv.hostPlatform.isUnix upx;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
cc -std=gnu11 $CFLAGS -w -o v $vc/v.c -lm $LDFLAGS
|
2021-06-28 23:13:55 +00:00
|
|
|
# vlang seems to want to write to $HOME/.vmodules,
|
|
|
|
# so lets give it a writable HOME
|
|
|
|
HOME=$PWD ./v -prod self
|
2020-04-24 23:36:52 +00:00
|
|
|
# Exclude thirdparty/vschannel as it is windows-specific.
|
|
|
|
find thirdparty -path thirdparty/vschannel -prune -o -type f -name "*.c" -execdir cc -std=gnu11 $CFLAGS -w -c {} $LDFLAGS ';'
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/{bin,lib,share}
|
|
|
|
cp -r examples $out/share
|
2021-06-28 23:13:55 +00:00
|
|
|
cp -r {cmd,vlib,thirdparty} $out/lib
|
|
|
|
mv v $out/lib
|
2020-04-24 23:36:52 +00:00
|
|
|
ln -s $out/lib/v $out/bin/v
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
homepage = "https://vlang.io/";
|
|
|
|
description = "Simple, fast, safe, compiled language for developing maintainable software";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ chiiruno ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|