2012-09-24 18:02:19 +01:00
|
|
|
{stdenv, fetchurl, zlib, openssl}:
|
|
|
|
stdenv.mkDerivation rec {
|
2017-03-09 17:58:59 +00:00
|
|
|
version = "0.5.1";
|
2012-09-24 18:02:19 +01:00
|
|
|
name = "libre-${version}";
|
|
|
|
src=fetchurl {
|
|
|
|
url = "http://www.creytiv.com/pub/re-${version}.tar.gz";
|
2017-03-09 17:58:59 +00:00
|
|
|
sha256 = "1qs6gpflgwic2pp1nplhhyl585h9q0kf74h5z29ajr5ij0j65rsa";
|
2012-09-24 18:02:19 +01:00
|
|
|
};
|
|
|
|
buildInputs = [zlib openssl];
|
|
|
|
makeFlags = [
|
|
|
|
"USE_ZLIB=1" "USE_OPENSSL=1"
|
|
|
|
''PREFIX=$(out)''
|
2012-09-24 20:49:11 +01:00
|
|
|
]
|
2015-01-15 04:25:26 +00:00
|
|
|
++ stdenv.lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.cc.cc}"
|
2016-08-30 14:30:24 +01:00
|
|
|
++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.lib.getDev stdenv.cc.libc}"
|
2012-09-24 20:49:11 +01:00
|
|
|
;
|
2012-09-24 18:02:19 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://www.creytiv.com/re.html";
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin];
|
2015-05-28 18:20:29 +01:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2014-07-01 08:51:28 +01:00
|
|
|
inherit version;
|
|
|
|
downloadPage = "http://www.creytiv.com/pub/";
|
|
|
|
updateWalker = true;
|
|
|
|
downloadURLRegexp = "/re-.*[.]tar[.].*";
|
2012-09-24 18:02:19 +01:00
|
|
|
};
|
|
|
|
}
|