Merge pull request #1584 from monocell/hhvm

HipHopVM update
This commit is contained in:
Rob Vermaas
2014-01-31 01:46:03 -08:00
3 changed files with 31 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "glog-0.3.3";
src = fetchurl {
url = "http://google-glog.googlecode.com/files/${name}.tar.gz";
sha1 = "ed40c26ecffc5ad47c618684415799ebaaa30d65";
};
meta = {
homepage = http://code.google.com/p/google-glog/;
license = "BSD";
description = "The glog library implements application-level logging.";
};
}