Compare commits

...

13 Commits

Author SHA1 Message Date
Ramses
c0fa465241 lasuite-meet: 1.15.0 -> 1.17.0 (#526822) 2026-06-06 04:45:53 +00:00
Ramses
2127670c44 joplin-desktop: fix WMClass to match icon with open window (#526838) 2026-06-06 04:43:45 +00:00
Ramses
0d306e012f guix: set meta.donationPage (#526919) 2026-06-06 04:42:51 +00:00
Ramses
35f13eff98 picocrypt-ng: 2.09 -> 2.10 (#526924) 2026-06-06 04:42:20 +00:00
zowoq
f3ce60d537 terraform-providers.keycloak_keycloak: 5.7.0 -> 5.8.0 (#528641) 2026-06-06 02:11:57 +00:00
R. Ryantm
3bd622d8e9 terraform-providers.keycloak_keycloak: 5.7.0 -> 5.8.0 2026-06-06 01:53:14 +00:00
Adam C. Stephens
c326d7aede golden-cheetah: 3.8-DEV2603 -> 3.8-DEV2605 (#528568) 2026-06-06 00:53:37 +00:00
R. Ryantm
37ea88817c golden-cheetah: 3.8-DEV2603 -> 3.8-DEV2605 2026-06-05 20:32:25 +00:00
Laurent Savaëte
99dae81e45 lasuite-meet: 1.15.0 -> 1.17.0 2026-06-03 19:41:39 +02:00
Ryan Omasta
794d74dc72 picocrypt-ng: add ryand56 as maintainer 2026-06-02 22:53:10 -06:00
Ryan Omasta
c070f8595c picocrypt-ng: 2.09 -> 2.10
https://github.com/Picocrypt-NG/Picocrypt-NG/releases/tag/2.10
Diff: https://github.com/Picocrypt-NG/Picocrypt-NG/compare/2.09...2.10
2026-06-02 22:53:10 -06:00
Ethan Carter Edwards
d08119d755 guix: set meta.donationPage
Good software deserves our support.

Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
2026-06-01 16:02:04 -07:00
Jairo Llopis
da4a23fcd0 joplin-desktop: fix WMClass to match icon with open window
In GNOME, when opening Joplin Desktop, the app displays a weird icon, detached from the app icon.
2026-06-01 20:12:01 +01:00
9 changed files with 22 additions and 2128 deletions

View File

@@ -815,13 +815,13 @@
"vendorHash": "sha256-UuLHaOEG6jmOAgfdNOtLyUimlAr3g6K8n3Ehu64sKqk="
},
"keycloak_keycloak": {
"hash": "sha256-55/a3lJCJEOIDsnFckx5BsUClphPZ9BSBvWxQBq1D9Y=",
"hash": "sha256-3KlfUM3qQwzRlUkuq+91z1VjRxIL3qcdCHfkVnfYJKQ=",
"homepage": "https://registry.terraform.io/providers/keycloak/keycloak",
"owner": "keycloak",
"repo": "terraform-provider-keycloak",
"rev": "v5.7.0",
"rev": "v5.8.0",
"spdx": "Apache-2.0",
"vendorHash": "sha256-JgQqOm+cAMLACp/rVz3ek1C4uuTAs8vqDcwRkpFssYc="
"vendorHash": "sha256-JTcIyUKoeCRxAzUWJy9FkMCYy3+D70uyzuiSTW3nHlA="
},
"kislerdm_neon": {
"hash": "sha256-1o5EnAI9X8Q+dXxh1/jZwimy1MmPDF3X2aRc+HO7HpQ=",

View File

@@ -26,13 +26,13 @@ let
in
stdenv.mkDerivation (finalAttrs: {
pname = "golden-cheetah";
version = "3.8-DEV2603";
version = "3.8-DEV2605";
src = fetchFromGitHub {
owner = "GoldenCheetah";
repo = "GoldenCheetah";
tag = "v${finalAttrs.version}";
hash = "sha256-FxQ18KJfR+fegQ5Qu4vI3vqckj4mB8s9VtSdRtIQISg=";
hash = "sha256-umy1EcLSoSDO5XFiGxfunniDr8RruyPvRTbypMbl7xU=";
};
buildInputs =

View File

@@ -161,6 +161,7 @@ stdenv.mkDerivation (finalAttrs: {
Guix is based on the Nix package manager.
'';
homepage = "https://guix.gnu.org/";
donationPage = "https://guix.gnu.org/donate/";
changelog = "https://codeberg.org/guix/guix/raw/tag/v${finalAttrs.version}/NEWS";
license = lib.licenses.gpl3Plus;
mainProgram = "guix";

View File

@@ -224,7 +224,7 @@ stdenv.mkDerivation (finalAttrs: {
icon = "joplin";
comment = "Joplin for Desktop";
categories = [ "Office" ];
startupWMClass = "@joplin/app-desktop";
startupWMClass = "joplin-app-desktop";
mimeTypes = [ "x-scheme-handler/joplin" ];
})
];

View File

@@ -13,7 +13,7 @@ buildNpmPackage (finalAttrs: {
npmDeps = fetchNpmDeps {
inherit (finalAttrs) version src sourceRoot;
hash = "sha256-LDH8aR+FSiIFYMDaQ3wNYAzv6VpHtH5X+DMHGBhPkm0=";
hash = "sha256-Dd0wqssmLBfHkOHI5aactLnCPG4JxPLhNC+eo//QRXM=";
};
npmBuildScript = "build";

View File

@@ -11,24 +11,18 @@ buildNpmPackage (finalAttrs: {
sourceRoot = "${finalAttrs.src.name}/src/mail";
# TODO: Remove package-lock.json patch when
# https://github.com/suitenumerique/meet/pull/1321 is merged.
postPatch = ''
substituteInPlace bin/html-to-plain-text bin/mjml-to-html \
--replace-fail \
'../backend/core/templates/mail' \
'${placeholder "out"}'
cp ${./package-lock.json} package-lock.json
'';
npmDeps = fetchNpmDeps {
pname = "${finalAttrs.pname}-npm-deps";
inherit version src;
inherit (finalAttrs) sourceRoot;
hash = "sha256-jjLzgGqCsMu6Smyfaam6coqOM9UW2zG88adSPVrWPEE=";
postPatch = "cp ${./package-lock.json} package-lock.json";
hash = "sha256-dvOmSQjtw7Qv3H+flOcXDaIxQzf9YBmsQo7jmSTA7tI=";
};
npmBuildScript = "build";

File diff suppressed because it is too large Load Diff

View File

@@ -6,13 +6,13 @@
python3,
}:
let
version = "1.15.0";
version = "1.17.0";
src = fetchFromGitHub {
owner = "suitenumerique";
repo = "meet";
tag = "v${version}";
hash = "sha256-18DcrrEvqWR6caEVZYxQlSnKcxItEpNE+bMhtS4Aa0M=";
hash = "sha256-hmkJwFYTBTbYsroegaRp/dcaNmeyPQ0Rbh/D1PGbh04=";
};
meta = {
@@ -85,6 +85,7 @@ python.pkgs.buildPythonApplication (finalAttrs: {
markdown
mozilla-django-oidc
nested-multipart-parser
phonenumbers
psycopg
pydantic
pyjwt

View File

@@ -16,18 +16,18 @@
buildGoModule (finalAttrs: {
pname = "picocrypt-ng";
version = "2.09";
version = "2.10";
src = fetchFromGitHub {
owner = "Picocrypt-NG";
repo = "Picocrypt-NG";
tag = finalAttrs.version;
hash = "sha256-s+93NoJ1O6/Af33pUobSA0kAhpw7W0IdA9H6CVxShQY=";
hash = "sha256-Rp7BgtJnV3fPed/QlWSxH8nL7cCTgMDpRGcgX5VI2l0=";
};
sourceRoot = "${finalAttrs.src.name}/src";
vendorHash = "sha256-2c8Q7+97jSGo8lwWOYBg76K04+TFXG1DdQzVMR8G7ik=";
vendorHash = "sha256-yAM1jzebUlNkVWiY8lPtlelfqpFQonNcAqNmmghCdPU=";
ldflags = [
"-s"
@@ -50,6 +50,9 @@ buildGoModule (finalAttrs: {
writableTmpDirAsHomeHook
];
# git ls-files doesn't work as source is not a git repo
checkFlags = [ "-skip=^TestOldVersionLiteralsAreAllowlisted$" ];
env.CGO_ENABLED = 1;
postInstall = ''
@@ -73,7 +76,10 @@ buildGoModule (finalAttrs: {
homepage = "https://github.com/Picocrypt-NG/Picocrypt-NG";
changelog = "https://github.com/Picocrypt-NG/Picocrypt-NG/blob/${finalAttrs.version}/Changelog.md";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ tbutter ];
maintainers = with lib.maintainers; [
tbutter
ryand56
];
mainProgram = "picocrypt-ng-gui";
};
})