My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/edid-decode/default.nix

26 lines
644 B

{ lib, stdenv, fetchgit }:
stdenv.mkDerivation rec {
pname = "edid-decode";
version = "unstable-2022-04-06";
src = fetchgit {
url = "git://linuxtv.org/edid-decode.git";
rev = "6def7bc83dfb0338632e06a8b14c93faa6af8879";
sha256 = "0v6d6jy309pb02l377l0fpmgfsvcpiqc5bvyrli34v413mhq6p15";
};
installPhase = ''
mkdir -p $out/bin
cp edid-decode $out/bin
'';
meta = with lib; {
description = "EDID decoder and conformance tester";
homepage = "https://git.linuxtv.org/edid-decode.git";
license = licenses.mit;
maintainers = with maintainers; [ Madouura ];
platforms = lib.platforms.all;
};
}