edid-generator: init at unstable-2018-03-15

This commit is contained in:
Florian Klink 2020-02-27 10:48:04 -08:00
parent 0538dec989
commit fa58182b17
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ stdenv
, fetchFromGitHub
, dos2unix
, edid-decode
, hexdump
, zsh
, modelines ? [] # Modeline "1280x800" 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync
}:
let
version = "unstable-2018-03-15";
in stdenv.mkDerivation {
pname = "edid-generator";
inherit version;
src = fetchFromGitHub {
owner = "akatrevorjay";
repo = "edid-generator";
rev = "31a6f80784d289d2faa8c4ca4788409c83b3ea14";
sha256 = "0j6wqzx5frca8b5i6812vvr5iwk7440fka70bmqn00k0vfhsc2x3";
};
nativeBuildInputs = [ dos2unix edid-decode hexdump zsh ];
postPatch = ''
patchShebangs modeline2edid
'';
configurePhase = (stdenv.lib.concatMapStringsSep "\n" (m: "echo \"${m}\" | ./modeline2edid -") modelines);
installPhase = ''
install -Dm 444 *.bin -t "$out/lib/firmware/edid"
'';
meta = {
description = "Hackerswork to generate an EDID blob from given Xorg Modelines";
homepage = "https://github.com/akatrevorjay/edid-generator";
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.flokli ];
platforms = stdenv.lib.platforms.all;
};
}

View file

@ -2984,6 +2984,8 @@ in
edid-decode = callPackage ../tools/misc/edid-decode { };
edid-generator = callPackage ../tools/misc/edid-generator { };
editres = callPackage ../tools/graphics/editres { };
edit = callPackage ../applications/editors/edit { };