edid-decode: replace with v4l-utils
https://git.linuxtv.org/edid-decode.git/commit/?id=cd4bba870bee3775d2bc811d1089fb3206437176 https://git.linuxtv.org/edid-decode.git/tree/README?id=cd4bba870bee3775d2bc811d1089fb3206437176
This commit is contained in:
parent
f70702ebb5
commit
e13c3c3628
@ -1,41 +0,0 @@
|
|||||||
{
|
|
||||||
lib,
|
|
||||||
stdenv,
|
|
||||||
fetchgit,
|
|
||||||
unstableGitUpdater,
|
|
||||||
}:
|
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
|
||||||
pname = "edid-decode";
|
|
||||||
version = "0-unstable-2024-04-02";
|
|
||||||
|
|
||||||
outputs = [
|
|
||||||
"out"
|
|
||||||
"man"
|
|
||||||
];
|
|
||||||
|
|
||||||
src = fetchgit {
|
|
||||||
url = "https://git.linuxtv.org/edid-decode.git";
|
|
||||||
rev = "3d635499e4aca3319f0796ba787213c981c5a770";
|
|
||||||
hash = "sha256-bqzO39YM/3h9p37xaGJAw9xERgWOD+4yqO/XQiq/QqM=";
|
|
||||||
};
|
|
||||||
|
|
||||||
preBuild = ''
|
|
||||||
export DESTDIR=$out
|
|
||||||
export bindir=/bin
|
|
||||||
export mandir=/share/man
|
|
||||||
'';
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
passthru.updateScript = unstableGitUpdater { };
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "EDID decoder and conformance tester";
|
|
||||||
homepage = "https://git.linuxtv.org/edid-decode.git";
|
|
||||||
license = with licenses; [ mit ];
|
|
||||||
maintainers = with maintainers; [ Madouura ];
|
|
||||||
platforms = platforms.all;
|
|
||||||
mainProgram = "edid-decode";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@ -3,8 +3,8 @@
|
|||||||
stdenv,
|
stdenv,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
dos2unix,
|
dos2unix,
|
||||||
edid-decode,
|
|
||||||
hexdump,
|
hexdump,
|
||||||
|
v4l-utils,
|
||||||
zsh,
|
zsh,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -34,8 +34,8 @@ stdenv.mkDerivation {
|
|||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
dos2unix
|
dos2unix
|
||||||
edid-decode
|
|
||||||
hexdump
|
hexdump
|
||||||
|
v4l-utils
|
||||||
zsh
|
zsh
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
stdenv,
|
stdenv,
|
||||||
buildPackages,
|
buildPackages,
|
||||||
edid-decode,
|
v4l-utils,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
fetchpatch,
|
fetchpatch,
|
||||||
meson,
|
meson,
|
||||||
@ -115,7 +115,7 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
# For `libdisplay-info`
|
# For `libdisplay-info`
|
||||||
python3
|
python3
|
||||||
hwdata
|
hwdata
|
||||||
edid-decode
|
v4l-utils
|
||||||
# For OpenVR
|
# For OpenVR
|
||||||
cmake
|
cmake
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
ninja,
|
ninja,
|
||||||
python3,
|
python3,
|
||||||
hwdata,
|
hwdata,
|
||||||
edid-decode,
|
v4l-utils,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||||||
meson
|
meson
|
||||||
pkg-config
|
pkg-config
|
||||||
ninja
|
ninja
|
||||||
edid-decode
|
v4l-utils
|
||||||
hwdata
|
hwdata
|
||||||
python3
|
python3
|
||||||
];
|
];
|
||||||
|
|||||||
@ -17,7 +17,6 @@
|
|||||||
coreutils,
|
coreutils,
|
||||||
curl, # Preferred to using the Perl HTTP libs - according to hw-probe.
|
curl, # Preferred to using the Perl HTTP libs - according to hw-probe.
|
||||||
dmidecode,
|
dmidecode,
|
||||||
edid-decode,
|
|
||||||
gnugrep,
|
gnugrep,
|
||||||
gnutar,
|
gnutar,
|
||||||
hwinfo,
|
hwinfo,
|
||||||
@ -27,6 +26,7 @@
|
|||||||
perl,
|
perl,
|
||||||
smartmontools,
|
smartmontools,
|
||||||
usbutils,
|
usbutils,
|
||||||
|
v4l-utils,
|
||||||
xz,
|
xz,
|
||||||
|
|
||||||
# Conditionally recommended
|
# Conditionally recommended
|
||||||
@ -83,12 +83,12 @@ stdenv.mkDerivation rec {
|
|||||||
smartmontools
|
smartmontools
|
||||||
pciutils
|
pciutils
|
||||||
usbutils
|
usbutils
|
||||||
edid-decode
|
|
||||||
iproute2 # (ip)
|
iproute2 # (ip)
|
||||||
coreutils # (sort)
|
coreutils # (sort)
|
||||||
gnugrep
|
gnugrep
|
||||||
curl
|
curl
|
||||||
gnutar
|
gnutar
|
||||||
|
v4l-utils
|
||||||
xz
|
xz
|
||||||
kmod # (lsmod)
|
kmod # (lsmod)
|
||||||
];
|
];
|
||||||
|
|||||||
@ -592,6 +592,7 @@ mapAliases {
|
|||||||
edUnstable = throw "edUnstable was removed; use ed instead"; # Added 2024-07-01
|
edUnstable = throw "edUnstable was removed; use ed instead"; # Added 2024-07-01
|
||||||
edgedb = throw "edgedb replaced to gel because of change of upstream"; # Added 2025-02-24
|
edgedb = throw "edgedb replaced to gel because of change of upstream"; # Added 2025-02-24
|
||||||
edge-runtime = throw "'edge-runtime' was removed as it was unused, unmaintained, likely insecure and failed to build"; # Added 2025-05-18
|
edge-runtime = throw "'edge-runtime' was removed as it was unused, unmaintained, likely insecure and failed to build"; # Added 2025-05-18
|
||||||
|
edid-decode = v4l-utils; # Added 2025-06-20
|
||||||
eidolon = throw "eidolon was removed as it is unmaintained upstream."; # Added 2025-05-28
|
eidolon = throw "eidolon was removed as it is unmaintained upstream."; # Added 2025-05-28
|
||||||
eintopf = lauti; # Project was renamed, added 2025-05-01
|
eintopf = lauti; # Project was renamed, added 2025-05-01
|
||||||
elasticsearch7Plugins = elasticsearchPlugins;
|
elasticsearch7Plugins = elasticsearchPlugins;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user