summary refs log tree commit diff
path: root/pkgs/applications/graphics/sane
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-06-04 23:19:25 +0100
committerRobert Scott <code@humanleg.org.uk>2022-06-23 18:38:19 +0100
commit466c2e342a6887507fb5e58d8d29350a0c4b7488 (patch)
tree0b2319cb85924678d57442029ac18a9c8000568b /pkgs/applications/graphics/sane
parentcefe06f820882fba4d764e270a06230a8ed1de15 (diff)
downloadnixpkgs-466c2e342a6887507fb5e58d8d29350a0c4b7488.tar
nixpkgs-466c2e342a6887507fb5e58d8d29350a0c4b7488.tar.gz
nixpkgs-466c2e342a6887507fb5e58d8d29350a0c4b7488.tar.bz2
nixpkgs-466c2e342a6887507fb5e58d8d29350a0c4b7488.tar.lz
nixpkgs-466c2e342a6887507fb5e58d8d29350a0c4b7488.tar.xz
nixpkgs-466c2e342a6887507fb5e58d8d29350a0c4b7488.tar.zst
nixpkgs-466c2e342a6887507fb5e58d8d29350a0c4b7488.zip
treewide/applications: add `sourceType` `binaryNativeCode` for many packages
Diffstat (limited to 'pkgs/applications/graphics/sane')
-rw-r--r--pkgs/applications/graphics/sane/backends/brscan4/default.nix1
-rw-r--r--pkgs/applications/graphics/sane/backends/brscan5/default.nix1
-rw-r--r--pkgs/applications/graphics/sane/backends/dsseries/default.nix1
3 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/sane/backends/brscan4/default.nix b/pkgs/applications/graphics/sane/backends/brscan4/default.nix
index ea70224a932..ec8efcc27c2 100644
--- a/pkgs/applications/graphics/sane/backends/brscan4/default.nix
+++ b/pkgs/applications/graphics/sane/backends/brscan4/default.nix
@@ -89,6 +89,7 @@ stdenv.mkDerivation rec {
     description = "Brother brscan4 sane backend driver";
     homepage = "http://www.brother.com";
     platforms = [ "i686-linux" "x86_64-linux" ];
+    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
     license = lib.licenses.unfree;
     maintainers = with lib.maintainers; [ jraygauthier ];
   };
diff --git a/pkgs/applications/graphics/sane/backends/brscan5/default.nix b/pkgs/applications/graphics/sane/backends/brscan5/default.nix
index 4d276bd57bc..59daa9eb09a 100644
--- a/pkgs/applications/graphics/sane/backends/brscan5/default.nix
+++ b/pkgs/applications/graphics/sane/backends/brscan5/default.nix
@@ -102,6 +102,7 @@ stdenv.mkDerivation rec {
     description = "Brother brscan5 sane backend driver";
     homepage = "https://www.brother.com";
     platforms = [ "i686-linux" "x86_64-linux" ];
+    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
     license = lib.licenses.unfree;
     maintainers = with lib.maintainers; [ mattchrist ];
   };
diff --git a/pkgs/applications/graphics/sane/backends/dsseries/default.nix b/pkgs/applications/graphics/sane/backends/dsseries/default.nix
index 8a01f70c6b0..93e179d867d 100644
--- a/pkgs/applications/graphics/sane/backends/dsseries/default.nix
+++ b/pkgs/applications/graphics/sane/backends/dsseries/default.nix
@@ -47,6 +47,7 @@ stdenv.mkDerivation rec {
     description = "Brother DSSeries SANE backend driver";
     homepage = "http://www.brother.com";
     platforms = lib.platforms.linux;
+    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
     license = lib.licenses.unfree;
     maintainers = with lib.maintainers; [ callahad ];
   };