Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{
|
|
stdenv,
|
|
lib,
|
|
fetchurl,
|
|
cmake,
|
|
libx86,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "read-edid";
|
|
version = "3.0.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.polypux.org/projects/read-edid/${pname}-${version}.tar.gz";
|
|
sha256 = "0vqqmwsgh2gchw7qmpqk6idgzcm5rqf2fab84y7gk42v1x2diin7";
|
|
};
|
|
|
|
patches = [ ./fno-common.patch ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace CMakeLists.txt --replace-fail 'COPYING' 'LICENSE'
|
|
|
|
# cmake 4 compatibility, upstream is dead
|
|
substituteInPlace CMakeLists.txt --replace-fail "cmake_minimum_required (VERSION 2.6)" "cmake_minimum_required (VERSION 3.10)"
|
|
'';
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = lib.optional stdenv.hostPlatform.isx86 libx86;
|
|
|
|
cmakeFlags = [ "-DCLASSICBUILD=${if stdenv.hostPlatform.isx86 then "ON" else "OFF"}" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for reading and parsing EDID data from monitors";
|
|
homepage = "http://www.polypux.org/projects/read-edid/";
|
|
license = licenses.bsd2; # Quoted: "This is an unofficial license. Let's call it BSD-like."
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|