lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 16.09-beta 35 lines 898 B view raw
1{ stdenv, fetchurl, perl, zlib, gnutls, gss, openssl, libssh2, libidn, libpsl, openldap }: 2 3stdenv.mkDerivation rec { 4 version = "7.48.0"; 5 6 name = "libgnurl-${version}"; 7 8 src = fetchurl { 9 url = "https://gnunet.org/sites/default/files/gnurl-7_48_0.tar.bz2"; 10 sha256 = "14gch4rdibrc8qs4mijsczxvl45dsclf234g17dk6c8nc2s4bm0a"; 11 }; 12 13 buildInputs = [ perl gnutls gss openssl zlib libidn libssh2 libpsl openldap ]; 14 15 preConfigure = '' 16 sed -e 's|/usr/bin|/no-such-path|g' -i.bak configure 17 ''; 18 19 configureFlags = [ 20 "--with-zlib" 21 "--with-gssapi" 22 "--with-libssh2" 23 "--with-libidn" 24 "--with-libpsl" 25 "--enable-ldap" 26 "--enable-ldaps" 27 ]; 28 29 meta = with stdenv.lib; { 30 description = "A fork of libcurl used by GNUnet"; 31 homepage = https://gnunet.org/gnurl; 32 maintainers = with maintainers; [ falsifian vrthra ]; 33 platforms = platforms.linux; 34 }; 35}