nixpkgs/pkgs/development/compilers/urweb/default.nix
2016-01-27 23:13:13 +03:00

44 lines
1.2 KiB
Nix

{ stdenv, fetchurl, file, openssl, mlton
, mysql, postgresql, sqlite
}:
stdenv.mkDerivation rec {
name = "urweb-${version}";
version = "20151220";
src = fetchurl {
url = "http://www.impredicative.com/ur/${name}.tgz";
sha256 = "155maalm4l1ni7az3yqs0lrgl5f2xr3pz4118ag1hnk82qldd4s5";
};
buildInputs = [ openssl mlton mysql postgresql sqlite ];
prePatch = ''
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
'';
configureFlags = "--with-openssl=${openssl}";
preConfigure = ''
export PGHEADER="${postgresql}/include/libpq-fe.h";
export MSHEADER="${mysql.lib}/include/mysql/mysql.h";
export SQHEADER="${sqlite}/include/sqlite3.h";
export CCARGS="-I$out/include \
-L${mysql.lib}/lib/mysql \
-L${postgresql}/lib \
-L${sqlite}/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 ];
};
}