about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/cctz
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/cctz')
-rw-r--r--nixpkgs/pkgs/development/libraries/cctz/default.nix35
1 files changed, 35 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/cctz/default.nix b/nixpkgs/pkgs/development/libraries/cctz/default.nix
new file mode 100644
index 000000000000..0b945c8c5990
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/cctz/default.nix
@@ -0,0 +1,35 @@
+{ lib, stdenv, fetchFromGitHub, Foundation }:
+
+stdenv.mkDerivation rec {
+  pname = "cctz";
+  version = "2.3";
+
+  src = fetchFromGitHub {
+    owner = "google";
+    repo = "cctz";
+    rev = "v${version}";
+    sha256 = "0254xfwscfkjc3fbvx6qgifr3pwkc2rb03z8pbvvqy098di9alhr";
+  };
+
+  makeFlags = [ "PREFIX=$(out)" ];
+
+  buildInputs = lib.optional stdenv.isDarwin Foundation;
+
+  installTargets = [ "install_hdrs" ]
+    ++ lib.optional (!stdenv.hostPlatform.isStatic) "install_shared_lib"
+    ++ lib.optional stdenv.hostPlatform.isStatic "install_lib";
+
+  postInstall = lib.optionalString stdenv.isDarwin ''
+    install_name_tool -id $out/lib/libcctz.so $out/lib/libcctz.so
+  '';
+
+  enableParallelBuilding = true;
+
+  meta = with 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;
+  };
+}