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

46 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, file, openssl, mlton
, mysql, postgresql, sqlite, gcc
}:
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";
};
2017-11-01 22:07:33 +00:00
buildInputs = [ openssl mlton mysql.connector-c postgresql sqlite ];
prePatch = ''
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
'';
2018-07-25 21:44:21 +00:00
configureFlags = [ "--with-openssl=${openssl.dev}" ];
preConfigure = ''
export PGHEADER="${postgresql}/include/libpq-fe.h";
2017-11-01 22:07:33 +00:00
export MSHEADER="${mysql.connector-c}/include/mysql/mysql.h";
2015-10-13 20:30:30 +00:00
export SQHEADER="${sqlite.dev}/include/sqlite3.h";
export CC="${gcc}/bin/gcc";
export CCARGS="-I$out/include \
-L${openssl.out}/lib \
2017-11-01 22:07:33 +00:00
-L${mysql.connector-c}/lib \
-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 ++ stdenv.lib.platforms.darwin;
2017-05-16 18:43:23 +00:00
maintainers = [ stdenv.lib.maintainers.thoughtpolice stdenv.lib.maintainers.sheganinans ];
};
}