about summary refs log tree commit diff
path: root/pkgs/servers/search
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-17 00:40:08 +0100
committerRobert Scott <code@humanleg.org.uk>2022-07-02 13:38:00 +0100
commit3d6c926c4f6464ba73a176686d65536f3ce17da4 (patch)
treebf7aafdf41ac52517a605b508a3567c164299305 /pkgs/servers/search
parent16c19219d3c556974b20a146d6c2771b2924b737 (diff)
treewide/servers,shells,tools: add sourceType for more packages
Diffstat (limited to 'pkgs/servers/search')
-rw-r--r--pkgs/servers/search/elasticsearch/6.x.nix1
-rw-r--r--pkgs/servers/search/elasticsearch/7.x.nix4
2 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/servers/search/elasticsearch/6.x.nix b/pkgs/servers/search/elasticsearch/6.x.nix
index 798fa83e6d588..32f6d67925c55 100644
--- a/pkgs/servers/search/elasticsearch/6.x.nix
+++ b/pkgs/servers/search/elasticsearch/6.x.nix
@@ -56,6 +56,7 @@ stdenv.mkDerivation (rec {
 
   meta = {
     description = "Open Source, Distributed, RESTful Search Engine";
+    sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
     license = if enableUnfree then licenses.elastic else licenses.asl20;
     platforms = platforms.unix;
     maintainers = with maintainers; [ apeschar basvandijk ];
diff --git a/pkgs/servers/search/elasticsearch/7.x.nix b/pkgs/servers/search/elasticsearch/7.x.nix
index 9ef1c3cc63493..aad6403cf6abc 100644
--- a/pkgs/servers/search/elasticsearch/7.x.nix
+++ b/pkgs/servers/search/elasticsearch/7.x.nix
@@ -72,6 +72,10 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Open Source, Distributed, RESTful Search Engine";
+    sourceProvenance = with lib.sourceTypes; [
+      binaryBytecode
+      binaryNativeCode
+    ];
     license = licenses.elastic;
     platforms = platforms.unix;
     maintainers = with maintainers; [ apeschar basvandijk ];