2015-09-09 14:32:23 +02:00
|
|
|
{ stdenv, fetchurl, file, openssl, mlton
|
|
|
|
, mysql, postgresql, sqlite
|
|
|
|
}:
|
2010-08-24 10:25:07 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-09 14:32:23 +02:00
|
|
|
name = "urweb-${version}";
|
2015-10-26 19:36:00 +01:00
|
|
|
version = "20151018";
|
2010-08-24 10:25:07 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-10-26 02:22:44 +02:00
|
|
|
url = "http://www.impredicative.com/ur/${name}.tgz";
|
2015-10-26 19:36:00 +01:00
|
|
|
sha256 = "08p52p5m1xl2gzdchnayky44mm2b0x8hv0f00iviyyv1gnx3lpy0";
|
2010-08-24 10:25:07 +02:00
|
|
|
};
|
|
|
|
|
2015-09-09 14:32:23 +02:00
|
|
|
buildInputs = [ openssl mlton mysql postgresql sqlite ];
|
2010-08-24 10:25:07 +02:00
|
|
|
|
2011-07-15 20:54:43 +02:00
|
|
|
prePatch = ''
|
2010-08-24 10:25:07 +02:00
|
|
|
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
|
2015-09-09 14:32:23 +02:00
|
|
|
'';
|
2010-08-24 10:25:07 +02:00
|
|
|
|
2015-09-21 10:45:22 +02:00
|
|
|
configureFlags = "--with-openssl=${openssl}";
|
|
|
|
|
2015-09-09 14:32:23 +02:00
|
|
|
preConfigure = ''
|
|
|
|
export PGHEADER="${postgresql}/include/libpq-fe.h";
|
|
|
|
export MSHEADER="${mysql.lib}/include/mysql/mysql.h";
|
|
|
|
export SQHEADER="${sqlite}/include/sqlite3.h";
|
2011-07-15 20:54:43 +02:00
|
|
|
|
2015-09-09 14:32:23 +02:00
|
|
|
export CCARGS="-I$out/include \
|
|
|
|
-L${mysql.lib}/lib/mysql \
|
|
|
|
-L${postgresql}/lib \
|
|
|
|
-L${sqlite}/lib";
|
|
|
|
'';
|
2011-01-24 16:27:07 +01:00
|
|
|
|
2015-09-09 14:32:23 +02:00
|
|
|
# Be sure to keep the statically linked libraries
|
2010-11-15 18:47:36 +01:00
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2010-08-24 10:25:07 +02:00
|
|
|
meta = {
|
2015-09-09 14:32:23 +02:00
|
|
|
description = "Advanced purely-functional web programming language";
|
|
|
|
homepage = "http://www.impredicative.com/ur/";
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
2010-08-24 10:25:07 +02:00
|
|
|
};
|
|
|
|
}
|