adriconf: init at 2.4.1
This commit is contained in:
parent
bf413e4630
commit
bb9d2cbb74
2 changed files with 43 additions and 0 deletions
41
pkgs/tools/graphics/adriconf/default.nix
Normal file
41
pkgs/tools/graphics/adriconf/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
{ stdenv
|
||||||
|
, lib
|
||||||
|
, fetchFromGitLab
|
||||||
|
, cmake
|
||||||
|
, pkg-config
|
||||||
|
, libdrm
|
||||||
|
, libGL
|
||||||
|
, atkmm
|
||||||
|
, pcre
|
||||||
|
, gtkmm3
|
||||||
|
, boost
|
||||||
|
, libxmlxx3
|
||||||
|
, mesa
|
||||||
|
, pciutils
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "adriconf";
|
||||||
|
version = "2.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
domain = "gitlab.freedesktop.org";
|
||||||
|
owner = "mesa";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "hZy+FpKKBKuho/fALu2O+44zzK6s/M8CTbhrO00ANgo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkg-config ];
|
||||||
|
buildInputs = [ libdrm libGL atkmm pcre gtkmm3 boost libxmlxx3 mesa pciutils ];
|
||||||
|
|
||||||
|
cmakeFlags = [ "-DENABLE_UNIT_TESTS=off" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://gitlab.freedesktop.org/mesa/adriconf/";
|
||||||
|
description = "A GUI tool used to configure open source graphics drivers";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ musfay ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -799,6 +799,8 @@ in
|
||||||
|
|
||||||
acme-client = callPackage ../tools/networking/acme-client { stdenv = gccStdenv; };
|
acme-client = callPackage ../tools/networking/acme-client { stdenv = gccStdenv; };
|
||||||
|
|
||||||
|
adriconf = callPackage ../tools/graphics/adriconf { };
|
||||||
|
|
||||||
amass = callPackage ../tools/networking/amass { };
|
amass = callPackage ../tools/networking/amass { };
|
||||||
|
|
||||||
afew = callPackage ../applications/networking/mailreaders/afew { };
|
afew = callPackage ../applications/networking/mailreaders/afew { };
|
||||||
|
|
Loading…
Reference in a new issue