nixpkgs/pkgs/development/libraries/libdisplay-info/default.nix
Artturin 9f031004e7 libdisplay-info: 0.1.0 -> 0.1.1
fixes the pkg-config pc filename
d0ad02c640
2023-03-07 22:54:03 +02:00

40 lines
804 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=";
};
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 ];
};
}