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

47 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, file, openssl, mlton
, libmysqlclient, postgresql, sqlite, gcc, icu
}:
stdenv.mkDerivation rec {
pname = "urweb";
2020-02-11 23:12:27 +00:00
version = "20200209";
src = fetchurl {
url = "https://github.com/urweb/urweb/releases/download/${version}/${pname}-${version}.tar.gz";
2020-02-11 23:12:27 +00:00
sha256 = "0qh6wcxfk5kf735i5gqwnkdirnnmqhnnpkfz96gz144dgz2i0c5c";
};
buildInputs = [ openssl mlton libmysqlclient postgresql sqlite icu ];
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";
export MSHEADER="${libmysqlclient}/include/mysql/mysql.h";
2015-10-13 20:30:30 +00:00
export SQHEADER="${sqlite.dev}/include/sqlite3.h";
export ICU_INCLUDES="-I${icu.dev}/include";
export CC="${gcc}/bin/gcc";
export CCARGS="-I$out/include \
-L${openssl.out}/lib \
-L${libmysqlclient}/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 = lib.licenses.bsd3;
platforms = lib.platforms.linux ++ lib.platforms.darwin;
maintainers = [ lib.maintainers.thoughtpolice lib.maintainers.sheganinans ];
};
}