about summary refs log tree commit diff
path: root/pkgs/servers/mattermost
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-11 12:39:29 +0100
committerRobert Scott <code@humanleg.org.uk>2022-06-16 20:21:42 +0100
commit61c35da6077fe044330ef17ace6f343f21a2a835 (patch)
tree1170f9b21f0ab085766b4e51c371fde74e332e5a /pkgs/servers/mattermost
parent8d64fd7d585b4daf9a833f6ccd07e758c821b0fc (diff)
treewide/servers,tools: add sourceType binaryNativeCode for many packages
Diffstat (limited to 'pkgs/servers/mattermost')
-rw-r--r--pkgs/servers/mattermost/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/servers/mattermost/default.nix b/pkgs/servers/mattermost/default.nix
index 99a949116ce05..55ea22500c562 100644
--- a/pkgs/servers/mattermost/default.nix
+++ b/pkgs/servers/mattermost/default.nix
@@ -90,6 +90,10 @@ in
     meta = with lib; {
       description = "Open-source, self-hosted Slack-alternative";
       homepage = "https://www.mattermost.org";
+      sourceProvenance = with sourceTypes; [
+        fromSource
+        binaryNativeCode  # mattermost-webapp
+      ];
       license = with licenses; [ agpl3 asl20 ];
       maintainers = with maintainers; [ fpletz ryantm numinit ];
       platforms = platforms.unix;