From 11a81ea7992d23409cb091e96bfc5ed0ac14d299 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Mon, 30 May 2022 10:47:08 -0700 Subject: [PATCH 1/2] googleearth-pro: mark meta.sourceProvenance --- pkgs/applications/misc/googleearth-pro/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/applications/misc/googleearth-pro/default.nix b/pkgs/applications/misc/googleearth-pro/default.nix index 950cb236ecbfa..6fc8456bea24f 100644 --- a/pkgs/applications/misc/googleearth-pro/default.nix +++ b/pkgs/applications/misc/googleearth-pro/default.nix @@ -116,6 +116,7 @@ mkDerivation rec { description = "A world sphere viewer"; homepage = "https://www.google.com/earth/"; license = licenses.unfree; + sourceProvenance = with lib.source-types; [ binaryNativeCode ]; maintainers = with maintainers; [ friedelino shamilton ]; platforms = platforms.linux; knownVulnerabilities = [ "Includes vulnerable bundled libraries." ]; From f5a494da7a3fb8385cd687dbda6d65c64a22e39c Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Mon, 30 May 2022 11:08:09 -0700 Subject: [PATCH 2/2] s/sourceTypes/source-types/ --- pkgs/applications/misc/googleearth-pro/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/googleearth-pro/default.nix b/pkgs/applications/misc/googleearth-pro/default.nix index 6fc8456bea24f..6a7092b6f6885 100644 --- a/pkgs/applications/misc/googleearth-pro/default.nix +++ b/pkgs/applications/misc/googleearth-pro/default.nix @@ -116,7 +116,7 @@ mkDerivation rec { description = "A world sphere viewer"; homepage = "https://www.google.com/earth/"; license = licenses.unfree; - sourceProvenance = with lib.source-types; [ binaryNativeCode ]; + sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; maintainers = with maintainers; [ friedelino shamilton ]; platforms = platforms.linux; knownVulnerabilities = [ "Includes vulnerable bundled libraries." ];