Update cosmic-web-apps

This commit is contained in:
2025-11-01 11:57:18 +01:00
parent 1451494f95
commit 3df6d08b36

View File

@@ -1,6 +1,5 @@
{
lib,
pkgconfig,
fetchFromGitHub,
openssl,
git,
@@ -12,6 +11,7 @@
gtk3,
webkitgtk_4_1,
wayland,
makeBinaryWrapper,
}:
rustPlatform.buildRustPackage rec {
@@ -47,7 +47,7 @@ rustPlatform.buildRustPackage rec {
wayland
glib
libxkbcommon
pkgconfig
pkg-config
openssl
git
gtk3
@@ -56,9 +56,10 @@ rustPlatform.buildRustPackage rec {
nativeBuildInputs = [
cmake
pkg-config
makeBinaryWrapper
];
postFixup = ''
postInstall = ''
wrapProgram $out/bin/dev-heppen-webapps \
--prefix LD_LIBRARY_PATH : ${
lib.makeLibraryPath [
@@ -68,10 +69,10 @@ rustPlatform.buildRustPackage rec {
}
'';
meta = with lib; {
meta = {
description = " Web applications at your fingertips.";
homepage = "https://github.com/cosmic-utils/web-apps";
license = licenses.mit;
maintainers = with maintainers; [ berrij ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ berrij ];
};
}