fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{stdenv, fetchurl, zlib, openssl}:
2stdenv.mkDerivation rec {
3 version = "0.5.8";
4 name = "libre-${version}";
5 src = fetchurl {
6 url = "http://www.creytiv.com/pub/re-${version}.tar.gz";
7 sha256 = "0w0f8j43j0nzgvkmv3ayzrssppgjmsh6z8mpa5iqsz8nv99dc3qr";
8 };
9 buildInputs = [ zlib openssl ];
10 makeFlags = [ "USE_ZLIB=1" "USE_OPENSSL=1" "PREFIX=$(out)" ]
11 ++ stdenv.lib.optional (stdenv.cc.cc != null) "SYSROOT_ALT=${stdenv.cc.cc}"
12 ++ stdenv.lib.optional (stdenv.cc.libc != null) "SYSROOT=${stdenv.lib.getDev stdenv.cc.libc}"
13 ;
14 meta = {
15 homepage = http://www.creytiv.com/re.html;
16 platforms = with stdenv.lib.platforms; linux;
17 maintainers = with stdenv.lib.maintainers; [raskin];
18 license = stdenv.lib.licenses.bsd3;
19 inherit version;
20 downloadPage = "http://www.creytiv.com/pub/";
21 updateWalker = true;
22 downloadURLRegexp = "/re-.*[.]tar[.].*";
23 };
24}