about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/cctz/default.nix
blob: e61b5840cf933e5c1f2bf9a597287a781736730f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
  };
}