53 lines
937 B
Nix
53 lines
937 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
giflib,
|
|
python3,
|
|
pkg-config,
|
|
pixman,
|
|
cairo,
|
|
pango,
|
|
stdenv,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "cinny-unwrapped";
|
|
version = "4.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cinnyapp";
|
|
repo = "cinny";
|
|
rev = "v${version}";
|
|
hash = "sha256-Mb9TEQAFtP73rBBP6gLwEdAtWKSoxP2lNcrs4qsnp5g=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-sXwqNKm7j/Ju70l2Zk5uIByVO3ldN7HkDoGX/01vID0=";
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
pixman
|
|
cairo
|
|
pango
|
|
] ++ lib.optionals stdenv.hostPlatform.isDarwin [ giflib ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
cp -r dist $out
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
description = "Yet another Matrix client for the web";
|
|
homepage = "https://cinny.in/";
|
|
maintainers = with lib.maintainers; [ abbe ];
|
|
license = lib.licenses.agpl3Only;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|