cctz: init at 2.2

This commit is contained in:
Orivej Desh
2018-06-11 08:09:09 +00:00
parent 979ac47cd8
commit 63a5b85b2a
2 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
name = "cctz-${version}";
version = "2.2";
src = fetchFromGitHub {
owner = "google";
repo = "cctz";
rev = "v${version}";
sha256 = "0liiqz1swfc019rzfaa9y5kavs2hwabs2vnwbn9jfczhyxy34y89";
};
makeFlags = [ "PREFIX=$(out)" ];
installTargets = [ "install_hdrs" "install_shared_lib" ];
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = https://github.com/google/cctz;
description = "C++ library for translating between absolute and civil times";
license = licenses.asl20;
maintainers = with maintainers; [ orivej ];
platforms = platforms.all;
};
}