mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
add glog 0.3.3
This commit is contained in:
parent
f2d6166781
commit
287a7e08f3
16
pkgs/development/libraries/glog/default.nix
Normal file
16
pkgs/development/libraries/glog/default.nix
Normal 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.";
|
||||
};
|
||||
}
|
@ -4193,6 +4193,8 @@ let
|
||||
|
||||
glm = callPackage ../development/libraries/glm { };
|
||||
|
||||
glog = callPackage ../development/libraries/glog { };
|
||||
|
||||
glpk = callPackage ../development/libraries/glpk { };
|
||||
|
||||
glsurf = callPackage ../applications/science/math/glsurf {
|
||||
|
Loading…
Reference in New Issue
Block a user