blob: fa499a001464923498a89a3c327f18102eddd249 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{ lib
, stdenv
, fetchFromGitLab
, meson
, pkg-config
, ninja
, python3
, hwdata
, edid-decode
}:
stdenv.mkDerivation rec {
pname = "libdisplay-info";
version = "0.1.0";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "emersion";
repo = pname;
rev = version;
sha256 = "sha256-jfi7RpEtyQicW0WWhrQg28Fta60YWxTbpbmPHmXxDhw=";
};
nativeBuildInputs = [ meson pkg-config ninja edid-decode python3 ];
buildInputs = [ hwdata ];
postPatch = ''
patchShebangs tool/gen-search-table.py
'';
meta = with lib; {
description = "EDID and DisplayID library";
homepage = "https://gitlab.freedesktop.org/emersion/libdisplay-info";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ pedrohlc ];
};
}
|