2017-10-22 20:45:00 +00:00
|
|
|
{ stdenv, lib, fetchurl, cmake, libx86 }:
|
2015-05-17 22:42:18 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "read-edid";
|
2015-05-17 22:42:18 +00:00
|
|
|
version = "3.0.2";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://www.polypux.org/projects/read-edid/${pname}-${version}.tar.gz";
|
2015-05-17 22:42:18 +00:00
|
|
|
sha256 = "0vqqmwsgh2gchw7qmpqk6idgzcm5rqf2fab84y7gk42v1x2diin7";
|
|
|
|
};
|
|
|
|
|
2022-05-06 07:36:57 +00:00
|
|
|
patches = [ ./fno-common.patch ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace CMakeLists.txt --replace 'COPYING' 'LICENSE'
|
|
|
|
'';
|
|
|
|
|
2017-10-22 20:45:00 +00:00
|
|
|
nativeBuildInputs = [ cmake ];
|
2021-11-21 01:50:41 +00:00
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isx86 libx86;
|
2017-10-22 20:45:00 +00:00
|
|
|
|
2021-11-21 01:50:41 +00:00
|
|
|
cmakeFlags = [ "-DCLASSICBUILD=${if stdenv.hostPlatform.isx86 then "ON" else "OFF"}" ];
|
2015-05-17 22:42:18 +00:00
|
|
|
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-05-17 22:42:18 +00:00
|
|
|
description = "Tool for reading and parsing EDID data from monitors";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.polypux.org/projects/read-edid/";
|
2015-05-17 22:42:18 +00:00
|
|
|
license = licenses.bsd2; # Quoted: "This is an unofficial license. Let's call it BSD-like."
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|