From 167ba27000fb443d9b7624948335cbdc13a8cdc4 Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Wed, 4 Sep 2024 15:08:18 +0200 Subject: [PATCH] edid-decode: fetch sources over HTTPS The git:// protocol is plain text. --- pkgs/tools/misc/edid-decode/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/edid-decode/default.nix b/pkgs/tools/misc/edid-decode/default.nix index fc3705bda095..fbee1797992d 100644 --- a/pkgs/tools/misc/edid-decode/default.nix +++ b/pkgs/tools/misc/edid-decode/default.nix @@ -14,7 +14,7 @@ stdenv.mkDerivation { ]; src = fetchgit { - url = "git://linuxtv.org/edid-decode.git"; + url = "https://git.linuxtv.org/edid-decode.git"; rev = "3d635499e4aca3319f0796ba787213c981c5a770"; hash = "sha256-bqzO39YM/3h9p37xaGJAw9xERgWOD+4yqO/XQiq/QqM="; };