moonlander: init at unstable-2021-05-23

Fixes: #230028
This commit is contained in:
Azat Bahawi 2023-05-07 20:49:54 +03:00
parent ccebd7e0fe
commit fc5922aa66
No known key found for this signature in database
GPG Key ID: C8C6BDDB3847F72B
2 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,44 @@
{ lib
, stdenv
, fetchFromSourcehut
, rustPlatform
, atk
, cairo
, gdk-pixbuf
, glib
, gtk3
, pango
, pkg-config
}:
rustPlatform.buildRustPackage rec {
pname = "moonlander";
version = "unstable-2021-05-23";
src = fetchFromSourcehut {
owner = "~admicos";
repo = "moonlander";
rev = "abfb9cd421092b73609a32d0a04d110294a48f5e";
hash = "sha256-kpaJRZPPVj8QTFfOx7nq3wN2jmyYASou7cgf+XY2RVU=";
};
cargoHash = "sha256-DL/EtZomrZlOFjUgNm6qnrB1MpXApkYKGubi+dB8aho=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [
atk
cairo
gdk-pixbuf
glib
gtk3
pango
];
meta = with lib; {
description = "Just another \"fancy\" Gemini client";
homepage = "https://sr.ht/~admicos/moonlander/";
license = licenses.mit;
maintainers = with maintainers; [ azahi ];
};
}

View File

@ -32277,6 +32277,8 @@ with pkgs;
moolticute = libsForQt5.callPackage ../applications/misc/moolticute { };
moonlander = callPackage ../applications/networking/browsers/moonlander { };
moonlight-embedded = callPackage ../applications/misc/moonlight-embedded { };
moonlight-qt = libsForQt5.callPackage ../applications/misc/moonlight-qt {