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

44 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, file, openssl, mlton
, mysql, postgresql, sqlite
}:
stdenv.mkDerivation rec {
name = "urweb-${version}";
2017-08-06 02:28:19 +00:00
version = "20170720";
src = fetchurl {
url = "http://www.impredicative.com/ur/${name}.tgz";
2017-08-06 02:28:19 +00:00
sha256 = "17qh9mcmlhbv6r52yij8l9ik7j7x6x7c09lf6pznnbdh4sf8p5wb";
};
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";
2015-10-13 20:30:30 +00:00
export SQHEADER="${sqlite.dev}/include/sqlite3.h";
export CCARGS="-I$out/include \
-L${lib.getLib mysql.client}/lib/mysql \
-L${postgresql.lib}/lib \
2015-10-13 20:30:30 +00:00
-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;
2017-05-16 18:43:23 +00:00
maintainers = [ stdenv.lib.maintainers.thoughtpolice stdenv.lib.maintainers.sheganinans ];
};
}