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

24 lines
587 B
Nix
Raw Normal View History

2015-04-22 01:33:39 +03:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
2014-01-24 18:51:04 +04:00
stdenv.mkDerivation rec {
2015-04-22 01:33:39 +03:00
name = "glog-${version}";
2017-11-12 16:37:36 +03:00
version = "0.3.5";
2015-04-22 01:33:39 +03:00
src = fetchFromGitHub {
2017-11-12 16:37:36 +03:00
owner = "google";
2015-04-22 01:33:39 +03:00
repo = "glog";
rev = "v${version}";
2017-11-12 16:37:36 +03:00
sha256 = "12v7j6xy0ghya6a0f6ciy4fnbdc486vml2g07j9zm8y5xc6vx3pq";
2014-01-24 18:51:04 +04:00
};
2015-04-22 01:33:39 +03:00
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
homepage = https://github.com/google/glog;
2015-04-22 01:33:39 +03:00
license = licenses.bsd3;
description = "Library for application-level logging";
2015-04-22 01:33:39 +03:00
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
2014-01-24 18:51:04 +04:00
};
}