lol
fork

Configure Feed

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

at v192 22 lines 567 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "re2"; 5 version = "20140304"; 6 7 src = fetchurl { 8 url = "https://re2.googlecode.com/files/${name}-${version}.tgz"; 9 sha256 = "19wn0472c9dsxp35d0m98hlwhngx1f2xhxqgr8cb5x72gnjx3zqb"; 10 }; 11 12 preConfigure = '' 13 substituteInPlace Makefile --replace "/usr/local" "$out" 14 ''; 15 16 meta = { 17 homepage = https://code.google.com/p/re2/; 18 description = "An efficient, principled regular expression library"; 19 license = stdenv.lib.licenses.bsd3; 20 platforms = with stdenv.lib.platforms; all; 21 }; 22}