1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-12 07:34:36 +00:00
nixpkgs/pkgs/development/compilers/urweb/default.nix

46 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, file, openssl, mlton
2019-05-30 22:28:39 +01:00
, mysql, postgresql, sqlite, gcc, icu
}:
stdenv.mkDerivation rec {
name = "urweb-${version}";
2019-05-30 22:28:39 +01:00
version = "20190217";
src = fetchurl {
2018-11-23 08:42:23 +00:00
url = "https://github.com/urweb/urweb/releases/download/${version}/${name}.tar.gz";
2019-05-30 22:28:39 +01:00
sha256 = "1cl0x0sy7w1lazszc8q06q3wx0x0rczxh27vimrsw54s6s9y096s";
};
2019-05-30 22:28:39 +01:00
buildInputs = [ openssl mlton mysql.connector-c postgresql sqlite icu ];
prePatch = ''
sed -e 's@/usr/bin/file@${file}/bin/file@g' -i configure
'';
2018-07-25 22:44:21 +01: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 21:30:30 +01: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 21:30:30 +01: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 19:43:23 +01:00
maintainers = [ stdenv.lib.maintainers.thoughtpolice stdenv.lib.maintainers.sheganinans ];
};
}