mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
39 lines
817 B
Nix
39 lines
817 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitLab
|
|
, meson
|
|
, pkg-config
|
|
, ninja
|
|
, python3
|
|
, hwdata
|
|
, edid-decode
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libdisplay-info";
|
|
version = "0.1.1";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "emersion";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-7t1CoLus3rPba9paapM7+H3qpdsw7FlzJsSHFwM/2Lk=";
|
|
};
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
nativeBuildInputs = [ meson pkg-config ninja edid-decode hwdata python3 ];
|
|
|
|
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 ];
|
|
};
|
|
}
|