mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
a069e74e2a
adriconf: 2.7.1 -> 2.7.2
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitLab
|
|
, cmake
|
|
, pkg-config
|
|
, libdrm
|
|
, libGL
|
|
, atkmm
|
|
, pcre
|
|
, gtkmm4
|
|
, pugixml
|
|
, mesa
|
|
, pciutils
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "adriconf";
|
|
version = "2.7.2";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "mesa";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-0XTsYeS4tNAnGhuJ81fmjHhFS6fVq1lirui5b+ojxTQ=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ libdrm libGL atkmm pcre gtkmm4 pugixml mesa pciutils ];
|
|
|
|
cmakeFlags = [ "-DENABLE_UNIT_TESTS=off" ];
|
|
|
|
postInstall = ''
|
|
install -Dm444 ../flatpak/org.freedesktop.adriconf.metainfo.xml \
|
|
-t $out/share/metainfo/
|
|
install -Dm444 ../flatpak/org.freedesktop.adriconf.desktop \
|
|
-t $out/share/applications/
|
|
install -Dm444 ../flatpak/org.freedesktop.adriconf.png \
|
|
-t $out/share/icons/hicolor/256x256/apps/
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://gitlab.freedesktop.org/mesa/adriconf/";
|
|
description = "GUI tool used to configure open source graphics drivers";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ muscaln ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "adriconf";
|
|
};
|
|
}
|