summary refs log tree commit diff
path: root/pkgs/tools/security/cryptomator
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-02 14:38:41 +0100
committerRobert Scott <code@humanleg.org.uk>2022-06-04 19:47:57 +0100
commit3b6bc4b69ca7eec695291af31d8878071e0e084d (patch)
treebe1a2290fc8831c596bdf2b585b8677876ad9b29 /pkgs/tools/security/cryptomator
parentf1d7577cca9f9dac11994c694369e325943ab798 (diff)
downloadnixpkgs-3b6bc4b69ca7eec695291af31d8878071e0e084d.tar
nixpkgs-3b6bc4b69ca7eec695291af31d8878071e0e084d.tar.gz
nixpkgs-3b6bc4b69ca7eec695291af31d8878071e0e084d.tar.bz2
nixpkgs-3b6bc4b69ca7eec695291af31d8878071e0e084d.tar.lz
nixpkgs-3b6bc4b69ca7eec695291af31d8878071e0e084d.tar.xz
nixpkgs-3b6bc4b69ca7eec695291af31d8878071e0e084d.tar.zst
nixpkgs-3b6bc4b69ca7eec695291af31d8878071e0e084d.zip
treewide: set sourceProvenance for packages containing downloaded jars
these are the easily identifiable cases and will not be comprehensive
Diffstat (limited to 'pkgs/tools/security/cryptomator')
-rw-r--r--pkgs/tools/security/cryptomator/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/security/cryptomator/default.nix b/pkgs/tools/security/cryptomator/default.nix
index ccd5318ffb6..7e8d8ca4bf8 100644
--- a/pkgs/tools/security/cryptomator/default.nix
+++ b/pkgs/tools/security/cryptomator/default.nix
@@ -110,6 +110,10 @@ in stdenv.mkDerivation rec {
   meta = with lib; {
     description = "Free client-side encryption for your cloud files";
     homepage = "https://cryptomator.org";
+    sourceProvenance = with sourceTypes; [
+      fromSource
+      binaryBytecode  # deps
+    ];
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ bachp ];
     platforms = platforms.linux;