discourse: move meta after passthru according to contribution doc

This commit is contained in:
Sandro Jäckel
2025-03-12 19:07:09 +01:00
parent e43fedd420
commit 739f4f15ae
+8 -8
View File
@@ -438,14 +438,6 @@ let
runHook postInstall
'';
meta = with lib; {
homepage = "https://www.discourse.org/";
platforms = platforms.linux;
maintainers = with maintainers; [ talyz ];
license = licenses.gpl2Plus;
description = "Discourse is an open source discussion platform";
};
passthru = {
inherit
rubyEnv
@@ -467,6 +459,14 @@ let
package = pkgs.discourse.override args;
};
};
meta = with lib; {
homepage = "https://www.discourse.org/";
platforms = platforms.linux;
maintainers = with maintainers; [ talyz ];
license = licenses.gpl2Plus;
description = "Discourse is an open source discussion platform";
};
};
in
discourse