mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 21:13:40 +00:00
47 lines
957 B
Nix
47 lines
957 B
Nix
{ stdenv
|
|
, lib
|
|
, dpkg
|
|
, fetchurl
|
|
, autoPatchelfHook
|
|
, glib-networking
|
|
, openssl
|
|
, webkitgtk
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "cinny-desktop";
|
|
version = "2.2.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/cinnyapp/cinny-desktop/releases/download/v${version}/Cinny_desktop-x86_64.deb";
|
|
sha256 = "sha256-TdKxVvhz6DTJ9ZST/OBc37DcH9lpoKrY5yP8skTO9eQ=";
|
|
};
|
|
|
|
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";
|
|
};
|
|
}
|