edid-decode: unstable-2022-04-06 -> unstable-2022-12-14

This commit is contained in:
Madoura 2022-12-24 16:42:45 -06:00 committed by Bjørn Forsman
parent 6ea73d8313
commit fb376978aa

View File

@ -1,26 +1,37 @@
{ lib, stdenv, fetchgit }:
{ lib
, stdenv
, fetchgit
, unstableGitUpdater
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "edid-decode";
version = "unstable-2022-04-06";
version = "unstable-2022-12-14";
outputs = [
"out"
"man"
];
src = fetchgit {
url = "git://linuxtv.org/edid-decode.git";
rev = "6def7bc83dfb0338632e06a8b14c93faa6af8879";
sha256 = "0v6d6jy309pb02l377l0fpmgfsvcpiqc5bvyrli34v413mhq6p15";
rev = "e052f5f9fdf74ca11aa1a8edfa62eff8d0aa3d0d";
hash = "sha256-qNtb/eM7VpS8nRbC/nNm6J9vEWVUSrg7OwNaW1774QY=";
};
installPhase = ''
mkdir -p $out/bin
cp edid-decode $out/bin
preBuild = ''
export DESTDIR=$out
export bindir=/bin
export mandir=/share/man
'';
passthru.updateScript = unstableGitUpdater { };
meta = with lib; {
description = "EDID decoder and conformance tester";
homepage = "https://git.linuxtv.org/edid-decode.git";
license = licenses.mit;
license = with licenses; [ mit ];
maintainers = with maintainers; [ Madouura ];
platforms = lib.platforms.all;
platforms = platforms.all;
};
}
})