Merge pull request #185427 from aveltras/master
This commit is contained in:
commit
43965fdc37
3 changed files with 54 additions and 0 deletions
|
@ -1273,6 +1273,12 @@
|
||||||
githubId = 1217745;
|
githubId = 1217745;
|
||||||
name = "Aldwin Vlasblom";
|
name = "Aldwin Vlasblom";
|
||||||
};
|
};
|
||||||
|
aveltras = {
|
||||||
|
email = "romain.viallard@outlook.fr";
|
||||||
|
github = "aveltras";
|
||||||
|
githubId = 790607;
|
||||||
|
name = "Romain Viallard";
|
||||||
|
};
|
||||||
avery = {
|
avery = {
|
||||||
email = "averyl+nixos@protonmail.com";
|
email = "averyl+nixos@protonmail.com";
|
||||||
github = "AveryLychee";
|
github = "AveryLychee";
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, dpkg
|
||||||
|
, fetchurl
|
||||||
|
, autoPatchelfHook
|
||||||
|
, glib-networking
|
||||||
|
, openssl
|
||||||
|
, webkitgtk
|
||||||
|
, wrapGAppsHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "cinny-desktop";
|
||||||
|
version = "2.1.1";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://github.com/cinnyapp/cinny-desktop/releases/download/v${version}/Cinny_desktop-x86_64.deb";
|
||||||
|
sha256 = "sha256-4jd+N3a+u+c+XLwgr8BvvdkVLzo+xTBKFdjiQeu7NJU=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
autoPatchelfHook
|
||||||
|
dpkg
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
glib-networking
|
||||||
|
openssl
|
||||||
|
webkitgtk
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
unpackCmd = "dpkg-deb -x $curSrc source";
|
||||||
|
|
||||||
|
installPhase = "mv usr $out";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Yet another matrix client for desktop";
|
||||||
|
homepage = "https://github.com/cinnyapp/cinny-desktop";
|
||||||
|
maintainers = [ maintainers.aveltras ];
|
||||||
|
license = licenses.mit;
|
||||||
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
mainProgram = "cinny";
|
||||||
|
};
|
||||||
|
}
|
|
@ -3186,6 +3186,8 @@ with pkgs;
|
||||||
|
|
||||||
cinny = callPackage ../applications/networking/instant-messengers/cinny { stdenv = stdenvNoCC; };
|
cinny = callPackage ../applications/networking/instant-messengers/cinny { stdenv = stdenvNoCC; };
|
||||||
|
|
||||||
|
cinny-desktop = callPackage ../applications/networking/instant-messengers/cinny-desktop { };
|
||||||
|
|
||||||
ckbcomp = callPackage ../tools/X11/ckbcomp { };
|
ckbcomp = callPackage ../tools/X11/ckbcomp { };
|
||||||
|
|
||||||
clac = callPackage ../tools/misc/clac {};
|
clac = callPackage ../tools/misc/clac {};
|
||||||
|
|
Loading…
Reference in a new issue