nixpkgs/pkgs/servers/restund/default.nix

34 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, openssl, libre, librem, mysql }:
2012-09-25 06:34:45 +00:00
stdenv.mkDerivation rec {
version = "0.4.2";
name = "restund-${version}";
src=fetchurl {
url = "http://www.creytiv.com/pub/restund-${version}.tar.gz";
sha256 = "db5260939d40cb2ce531075bef02b9d6431067bdd52f3168a6f25246bdf7b9f2";
};
buildInputs = [ zlib openssl libre librem mysql.lib ];
2012-09-25 06:34:45 +00:00
makeFlags = [
"LIBRE_MK=${libre}/share/re/re.mk"
"LIBRE_INC=${libre}/include/re"
"LIBRE_SO=${libre}/lib"
"LIBREM_PATH=${librem}"
''PREFIX=$(out)''
"USE_MYSQL=1"
2012-09-25 06:34:45 +00:00
]
++ stdenv.lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.cc.cc}"
++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.cc.libc}"
2012-09-25 06:34:45 +00:00
;
NIX_LDFLAGS='' -L${stdenv.lib.getLib mysql.client}/lib/mysql '';
2012-09-25 06:34:45 +00:00
meta = {
homepage = "http://www.creytiv.com/restund.html";
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [raskin];
license = stdenv.lib.licenses.bsd3;
2014-07-01 07:53:47 +00:00
inherit version;
downloadPage = "http://www.creytiv.com/pub/";
updateWalker = true;
downloadURLRegexp = "/restund-.*[.]tar[.]";
2014-11-27 00:19:24 +00:00
broken = true; # probably due to glibc-2.20
2012-09-25 06:34:45 +00:00
};
}