My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/os-specific/linux/radeontools/default.nix

25 lines
618 B

{ lib, stdenv, fetchurl
, autoreconfHook
, pciutils
, pkg-config
, xorg
}:
stdenv.mkDerivation rec {
pname = "radeontool";
version = "1.6.3";
src = fetchurl {
url = "https://people.freedesktop.org/~airlied/radeontool/${pname}-${version}.tar.gz";
sha256 = "0mjk9wr9rsb17yy92j6yi16hfpa6v5r1dbyiy60zp4r125wr63za";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ xorg.libpciaccess ];
meta = with lib; {
description = "Lowlevel tools to tweak register and dump state on radeon GPUs";
homepage = "https://airlied.livejournal.com/";
license = licenses.zlib;
};
}