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