17 lines
392 B
Nix
17 lines
392 B
Nix
{ 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.";
|
|
};
|
|
}
|