85 lines
2.0 KiB
Nix
85 lines
2.0 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
fetchpatch,
|
|
file,
|
|
openssl,
|
|
mlton,
|
|
libmysqlclient,
|
|
libpq,
|
|
sqlite,
|
|
gcc,
|
|
icu,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "urweb";
|
|
version = "20200209";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/urweb/urweb/releases/download/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0qh6wcxfk5kf735i5gqwnkdirnnmqhnnpkfz96gz144dgz2i0c5c";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://github.com/urweb/urweb/commit/f7a38a95bee9d1aaf7ed83a651cfbce8da96ed44.patch";
|
|
sha256 = "TQFD9Y8OEOSFv6cqpHQ4WSNAPzl82MmVCAxLR4F4Uxc=";
|
|
})
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
mlton
|
|
libmysqlclient
|
|
libpq
|
|
sqlite
|
|
icu
|
|
];
|
|
|
|
prePatch = ''
|
|
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
|
|
'';
|
|
|
|
configureFlags = [ "--with-openssl=${openssl.dev}" ];
|
|
|
|
preConfigure = ''
|
|
export MSHEADER="${libmysqlclient}/include/mysql/mysql.h";
|
|
export SQHEADER="${sqlite.dev}/include/sqlite3.h";
|
|
export ICU_INCLUDES="-I${icu.dev}/include";
|
|
|
|
export CC="${gcc}/bin/gcc";
|
|
export CCARGS="-I$out/include \
|
|
-L${lib.getLib openssl}/lib \
|
|
-L${libmysqlclient}/lib \
|
|
-L${libpq}/lib \
|
|
-L${sqlite.out}/lib";
|
|
''
|
|
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
# unresolved reference when linking liburweb.1.dylib
|
|
export LDFLAGS="-Wl,-undefined,dynamic_lookup";
|
|
'';
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
# Needed with GCC 12
|
|
"-Wno-error=use-after-free"
|
|
];
|
|
|
|
# Be sure to keep the statically linked libraries
|
|
dontDisableStatic = true;
|
|
|
|
meta = {
|
|
description = "Advanced purely-functional web programming language";
|
|
mainProgram = "urweb";
|
|
homepage = "http://www.impredicative.com/ur/";
|
|
license = lib.licenses.bsd3;
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
maintainers = [
|
|
lib.maintainers.buggymcbugfix
|
|
lib.maintainers.thoughtpolice
|
|
lib.maintainers.sheganinans
|
|
];
|
|
};
|
|
}
|