44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ stdenv, lib, fetchurl, file, openssl, mlton
|
|
, mysql, postgresql, sqlite
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "urweb-${version}";
|
|
version = "20170105";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.impredicative.com/ur/${name}.tgz";
|
|
sha256 = "2ad3aea2c4851c9b18f752d38c7127af8293fbbbbdb3dd06b73a4603fe399b67";
|
|
};
|
|
|
|
buildInputs = [ openssl mlton mysql.client postgresql sqlite ];
|
|
|
|
prePatch = ''
|
|
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
|
|
'';
|
|
|
|
configureFlags = "--with-openssl=${openssl.dev}";
|
|
|
|
preConfigure = ''
|
|
export PGHEADER="${postgresql}/include/libpq-fe.h";
|
|
export MSHEADER="${lib.getDev mysql.client}/include/mysql/mysql.h";
|
|
export SQHEADER="${sqlite.dev}/include/sqlite3.h";
|
|
|
|
export CCARGS="-I$out/include \
|
|
-L${lib.getLib mysql.client}/lib/mysql \
|
|
-L${postgresql.lib}/lib \
|
|
-L${sqlite.out}/lib";
|
|
'';
|
|
|
|
# Be sure to keep the statically linked libraries
|
|
dontDisableStatic = true;
|
|
|
|
meta = {
|
|
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 stdenv.lib.maintainers.sheganinans ];
|
|
};
|
|
}
|