lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.09-beta 27 lines 675 B view raw
1{ stdenv, fetchFromGitHub }: 2 3stdenv.mkDerivation rec { 4 name = "cctz-${version}"; 5 version = "2.2"; 6 7 src = fetchFromGitHub { 8 owner = "google"; 9 repo = "cctz"; 10 rev = "v${version}"; 11 sha256 = "0liiqz1swfc019rzfaa9y5kavs2hwabs2vnwbn9jfczhyxy34y89"; 12 }; 13 14 makeFlags = [ "PREFIX=$(out)" ]; 15 16 installTargets = [ "install_hdrs" "install_shared_lib" ]; 17 18 enableParallelBuilding = true; 19 20 meta = with stdenv.lib; { 21 homepage = https://github.com/google/cctz; 22 description = "C++ library for translating between absolute and civil times"; 23 license = licenses.asl20; 24 maintainers = with maintainers; [ orivej ]; 25 platforms = platforms.all; 26 }; 27}