Files
nixpkgs/pkgs/development/compilers/urweb/default.nix
T

44 lines
1.3 KiB
Nix
Raw Normal View History

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