2021-01-22 11:25:31 +00:00
|
|
|
{ lib, stdenv, fetchurl, file, openssl, mlton
|
2019-09-22 08:38:09 +01:00
|
|
|
, libmysqlclient, postgresql, sqlite, gcc, icu
|
2015-09-09 13:32:23 +01:00
|
|
|
}:
|
2010-08-24 09:25:07 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "urweb";
|
2020-02-11 23:12:27 +00:00
|
|
|
version = "20200209";
|
2010-08-24 09:25:07 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/urweb/urweb/releases/download/${version}/${pname}-${version}.tar.gz";
|
2020-02-11 23:12:27 +00:00
|
|
|
sha256 = "0qh6wcxfk5kf735i5gqwnkdirnnmqhnnpkfz96gz144dgz2i0c5c";
|
2010-08-24 09:25:07 +01:00
|
|
|
};
|
|
|
|
|
2019-09-22 08:38:09 +01:00
|
|
|
buildInputs = [ openssl mlton libmysqlclient postgresql sqlite icu ];
|
2010-08-24 09:25:07 +01:00
|
|
|
|
2011-07-15 19:54:43 +01:00
|
|
|
prePatch = ''
|
2010-08-24 09:25:07 +01:00
|
|
|
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
|
2015-09-09 13:32:23 +01:00
|
|
|
'';
|
2010-08-24 09:25:07 +01:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-openssl=${openssl.dev}" ];
|
2015-09-21 09:45:22 +01:00
|
|
|
|
2015-09-09 13:32:23 +01:00
|
|
|
preConfigure = ''
|
2017-09-28 04:59:18 +01:00
|
|
|
export PGHEADER="${postgresql}/include/libpq-fe.h";
|
2019-09-22 08:38:09 +01:00
|
|
|
export MSHEADER="${libmysqlclient}/include/mysql/mysql.h";
|
2015-10-13 21:30:30 +01:00
|
|
|
export SQHEADER="${sqlite.dev}/include/sqlite3.h";
|
2020-02-04 12:22:46 +00:00
|
|
|
export ICU_INCLUDES="-I${icu.dev}/include";
|
2011-07-15 19:54:43 +01:00
|
|
|
|
2017-09-27 15:44:35 +01:00
|
|
|
export CC="${gcc}/bin/gcc";
|
2015-09-09 13:32:23 +01:00
|
|
|
export CCARGS="-I$out/include \
|
2017-09-27 15:44:35 +01:00
|
|
|
-L${openssl.out}/lib \
|
2019-09-22 08:38:09 +01:00
|
|
|
-L${libmysqlclient}/lib \
|
2015-10-14 04:47:54 +01:00
|
|
|
-L${postgresql.lib}/lib \
|
2015-10-13 21:30:30 +01:00
|
|
|
-L${sqlite.out}/lib";
|
2015-09-09 13:32:23 +01:00
|
|
|
'';
|
2011-01-24 15:27:07 +00:00
|
|
|
|
2015-09-09 13:32:23 +01:00
|
|
|
# Be sure to keep the statically linked libraries
|
2010-11-15 17:47:36 +00:00
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2010-08-24 09:25:07 +01:00
|
|
|
meta = {
|
2015-09-09 13:32:23 +01:00
|
|
|
description = "Advanced purely-functional web programming language";
|
|
|
|
homepage = "http://www.impredicative.com/ur/";
|
2021-01-22 11:25:31 +00:00
|
|
|
license = lib.licenses.bsd3;
|
|
|
|
platforms = lib.platforms.linux ++ lib.platforms.darwin;
|
|
|
|
maintainers = [ lib.maintainers.thoughtpolice lib.maintainers.sheganinans ];
|
2010-08-24 09:25:07 +01:00
|
|
|
};
|
|
|
|
}
|