nixpkgs/pkgs/development/libraries/re2/default.nix

23 lines
573 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "re2";
2014-04-26 18:12:20 +00:00
version = "20140304";
src = fetchurl {
url = "https://re2.googlecode.com/files/${name}-${version}.tgz";
2014-04-26 18:12:20 +00:00
sha256 = "19wn0472c9dsxp35d0m98hlwhngx1f2xhxqgr8cb5x72gnjx3zqb";
};
preConfigure = ''
substituteInPlace Makefile --replace "/usr/local" "$out"
'';
meta = {
homepage = https://code.google.com/p/re2/;
description = "An efficient, principled regular expression library";
license = with stdenv.lib.licenses; bsd3;
platforms = with stdenv.lib.platforms; all;
};
}