2021-01-15 09:19:50 +00:00
|
|
|
{ lib, stdenv, fetchgit }:
|
2021-07-14 16:10:11 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-04-17 22:02:34 +01:00
|
|
|
pname = "edid-decode";
|
|
|
|
version = "unstable-2022-04-06";
|
2018-02-04 22:49:16 +00:00
|
|
|
|
|
|
|
src = fetchgit {
|
2018-12-31 15:21:23 +00:00
|
|
|
url = "git://linuxtv.org/edid-decode.git";
|
|
|
|
rev = "6def7bc83dfb0338632e06a8b14c93faa6af8879";
|
|
|
|
sha256 = "0v6d6jy309pb02l377l0fpmgfsvcpiqc5bvyrli34v413mhq6p15";
|
2018-02-04 22:49:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp edid-decode $out/bin
|
|
|
|
'';
|
|
|
|
|
2022-04-18 00:13:36 +01:00
|
|
|
meta = with lib; {
|
2018-02-04 22:49:16 +00:00
|
|
|
description = "EDID decoder and conformance tester";
|
2022-04-17 22:02:34 +01:00
|
|
|
homepage = "https://git.linuxtv.org/edid-decode.git";
|
2022-04-18 00:13:36 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ Madouura ];
|
2021-01-15 09:19:50 +00:00
|
|
|
platforms = lib.platforms.all;
|
2018-02-04 22:49:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|