summary refs log tree commit diff
path: root/pkgs/tools/misc/edid-decode
diff options
context:
space:
mode:
authorMadoura <madouura@gmail.com>2022-04-17 16:02:34 -0500
committerMadoura <madouura@gmail.com>2022-04-17 18:20:57 -0500
commit6f56cbc0caedab6454218e4514f16a985aaff28c (patch)
treee8826ec37c9cb9680fc6378192fb133289ae4a64 /pkgs/tools/misc/edid-decode
parent3cc32b62e2d78d3600b34f3e4529b7467b5b2263 (diff)
downloadnixpkgs-6f56cbc0caedab6454218e4514f16a985aaff28c.tar
nixpkgs-6f56cbc0caedab6454218e4514f16a985aaff28c.tar.gz
nixpkgs-6f56cbc0caedab6454218e4514f16a985aaff28c.tar.bz2
nixpkgs-6f56cbc0caedab6454218e4514f16a985aaff28c.tar.lz
nixpkgs-6f56cbc0caedab6454218e4514f16a985aaff28c.tar.xz
nixpkgs-6f56cbc0caedab6454218e4514f16a985aaff28c.tar.zst
nixpkgs-6f56cbc0caedab6454218e4514f16a985aaff28c.zip
edid-decode: unstable-2018-12-06 -> unstable-2022-04-06
Diffstat (limited to 'pkgs/tools/misc/edid-decode')
-rw-r--r--pkgs/tools/misc/edid-decode/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/edid-decode/default.nix b/pkgs/tools/misc/edid-decode/default.nix
index 2e8af7bcd9c..788f1bef343 100644
--- a/pkgs/tools/misc/edid-decode/default.nix
+++ b/pkgs/tools/misc/edid-decode/default.nix
@@ -1,8 +1,8 @@
 { lib, stdenv, fetchgit }:
 
 stdenv.mkDerivation rec {
-  pname = "edid-decode-unstable";
-  version = "unstable-2018-12-06";
+  pname = "edid-decode";
+  version = "unstable-2022-04-06";
 
   src = fetchgit {
     url = "git://linuxtv.org/edid-decode.git";
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
 
   meta = with lib; {
     description = "EDID decoder and conformance tester";
-    homepage = "https://cgit.freedesktop.org/xorg/app/edid-decode/";
+    homepage = "https://git.linuxtv.org/edid-decode.git";
     license = licenses.mit;
     maintainers = with maintainers; [ Madouura ];
     platforms = lib.platforms.all;