lol
0
fork

Configure Feed

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

at v192 26 lines 595 B view raw
1{ fetchurl, buildPerlPackage, zlib, stdenv }: 2 3buildPerlPackage rec { 4 name = "Compress-Raw-Zlib-2.065"; 5 6 src = fetchurl { 7 url = "mirror://cpan/authors/id/P/PM/PMQS/${name}.tar.gz"; 8 sha256 = "1i09h3dvn8ipaj1l2nq2qd19wzhn7wcpbsipdkcniwi0sgy1kf1p"; 9 }; 10 11 preConfigure = '' 12 cat > config.in <<EOF 13 BUILD_ZLIB = False 14 INCLUDE = ${zlib}/include 15 LIB = ${zlib}/lib 16 OLD_ZLIB = False 17 GZIP_OS_CODE = AUTO_DETECT 18 EOF 19 ''; 20 21 doCheck = !stdenv.isDarwin; 22 23 meta = { 24 license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ]; 25 }; 26}