aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/arduino/platformio/use-local-spdx-license-list.patch
blob: 511d81c3b012d604474cd508207e25cf06d11771 (plain)
1
2
3
4
5
6
7
8
9
10
11
diff --git a/platformio/package/manifest/schema.py b/platformio/package/manifest/schema.py
index f293ba5a..a818271f 100644
--- a/platformio/package/manifest/schema.py
+++ b/platformio/package/manifest/schema.py
@@ -252,5 +252,4 @@ class ManifestSchema(BaseSchema):
     @staticmethod
     @memoized(expire="1h")
     def load_spdx_licenses():
-        spdx_data_url = "https://dl.bintray.com/platformio/dl-misc/spdx-licenses-3.json"
-        return json.loads(fetch_remote_content(spdx_data_url))
+        return json.load(open("@SPDX_LICENSE_LIST_DATA@/json/licenses.json"))