Merge pull request #262611 from ashkitten/update-cinny

cinny: 2.2.6 -> 3.0.0

authored by

Weijia Wang and committed by
GitHub
3a5f01cf d276de49

+28 -5
+28 -5
pkgs/applications/networking/instant-messengers/cinny/default.nix
··· 1 - { lib, buildNpmPackage, fetchFromGitHub, writeText, jq, conf ? { } }: 1 + { lib 2 + , buildNpmPackage 3 + , fetchFromGitHub 4 + , writeText 5 + , jq 6 + , python3 7 + , pkg-config 8 + , pixman 9 + , cairo 10 + , pango 11 + , stdenv 12 + , darwin 13 + , conf ? { } 14 + }: 2 15 3 16 let 4 17 configOverrides = writeText "cinny-config-overrides.json" (builtins.toJSON conf); 5 18 in 6 19 buildNpmPackage rec { 7 20 pname = "cinny"; 8 - version = "2.2.6"; 21 + version = "3.0.0"; 9 22 10 23 src = fetchFromGitHub { 11 24 owner = "cinnyapp"; 12 25 repo = "cinny"; 13 26 rev = "v${version}"; 14 - hash = "sha256-Da/gbq9piKvkIMiamoafcRrqxF7128GXoswk2C43An8="; 27 + hash = "sha256-BFovEmT4RgdzlSYi1p0324PW7+2rvw3n5+jKWTV2FF4="; 15 28 }; 16 29 17 - npmDepsHash = "sha256-3wgB/dQmLtwxbRsk+OUcyfx98vpCvhvseEOCrJIFohY="; 30 + npmDepsHash = "sha256-E+VBs66chBeiK40DZZ1hWTTISKaBN1RA+Uyr1iHqfus="; 18 31 19 32 nativeBuildInputs = [ 20 33 jq 34 + python3 35 + pkg-config 36 + ]; 37 + 38 + buildInputs = [ 39 + pixman 40 + cairo 41 + pango 42 + ] ++ lib.optionals stdenv.isDarwin [ 43 + darwin.apple_sdk.frameworks.CoreText 21 44 ]; 22 45 23 46 installPhase = '' ··· 32 55 meta = with lib; { 33 56 description = "Yet another Matrix client for the web"; 34 57 homepage = "https://cinny.in/"; 35 - maintainers = with maintainers; [ abbe ]; 58 + maintainers = with maintainers; [ abbe ashkitten ]; 36 59 license = licenses.agpl3Only; 37 60 platforms = platforms.all; 38 61 };