Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / cctz / default.nix
blob0b945c8c5990ad1771d39e8f440d8cf303b7995c
1 { lib, stdenv, fetchFromGitHub, Foundation }:
3 stdenv.mkDerivation rec {
4   pname = "cctz";
5   version = "2.3";
7   src = fetchFromGitHub {
8     owner = "google";
9     repo = "cctz";
10     rev = "v${version}";
11     sha256 = "0254xfwscfkjc3fbvx6qgifr3pwkc2rb03z8pbvvqy098di9alhr";
12   };
14   makeFlags = [ "PREFIX=$(out)" ];
16   buildInputs = lib.optional stdenv.isDarwin Foundation;
18   installTargets = [ "install_hdrs" ]
19     ++ lib.optional (!stdenv.hostPlatform.isStatic) "install_shared_lib"
20     ++ lib.optional stdenv.hostPlatform.isStatic "install_lib";
22   postInstall = lib.optionalString stdenv.isDarwin ''
23     install_name_tool -id $out/lib/libcctz.so $out/lib/libcctz.so
24   '';
26   enableParallelBuilding = true;
28   meta = with lib; {
29     homepage = "https://github.com/google/cctz";
30     description = "C++ library for translating between absolute and civil times";
31     license = licenses.asl20;
32     maintainers = with maintainers; [ orivej ];
33     platforms = platforms.all;
34   };