1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

abseil-cpp: init at 20190322-eab2078b53c9e3d9d240135c09d27e3393acb50a

Signed-off-by: Anders Kaseorg <andersk@mit.edu>
This commit is contained in:
Anders Kaseorg 2019-03-26 17:02:15 -07:00
parent 08e9273e29
commit 8da6083b37
2 changed files with 26 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
name = "abseil-cpp-${version}";
date = "20190322";
rev = "eab2078b53c9e3d9d240135c09d27e3393acb50a";
version = "${date}-${rev}";
src = fetchFromGitHub {
owner = "abseil";
repo = "abseil-cpp";
rev = "${rev}";
sha256 = "1bpz44hxq5fpkv6jlgphzk7mxjiiah526jgb63ih5pd1hd2cfw1r";
};
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "An open-source collection of C++ code designed to augment the C++ standard library";
homepage = https://abseil.io/;
license = licenses.asl20;
maintainers = [ maintainers.andersk ];
};
}

View file

@ -9381,6 +9381,8 @@ in
aalib = callPackage ../development/libraries/aalib { };
abseil-cpp = callPackage ../development/libraries/abseil-cpp { };
accountsservice = callPackage ../development/libraries/accountsservice { };
acl = callPackage ../development/libraries/acl { };