nixpkgs/pkgs/tools/misc/edid-decode/default.nix

27 lines
656 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchgit }:
2021-07-14 15:10:11 +00:00
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "edid-decode-unstable";
2021-07-14 15:10:11 +00:00
version = "unstable-2018-12-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
'';
meta = {
description = "EDID decoder and conformance tester";
homepage = "https://cgit.freedesktop.org/xorg/app/edid-decode/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.chiiruno ];
platforms = lib.platforms.all;
2018-02-04 22:49:16 +00:00
};
}