umr: init at unstable-2021-02-18

This commit is contained in:
Flakebi 2020-02-19 16:40:00 +01:00 committed by Sebastian Neubauer
parent d84668403a
commit e6b86a37eb
2 changed files with 41 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{ lib, stdenv, fetchgit, bash-completion, cmake, pkg-config
, libdrm, libpciaccess, llvmPackages, ncurses
}:
stdenv.mkDerivation rec {
pname = "umr";
version = "unstable-2021-02-18";
src = fetchgit {
url = "https://gitlab.freedesktop.org/tomstdenis/umr";
rev = "79e17f8f2807ed707fc1be369d0aad536f6dbc97";
sha256 = "IwTkHEuJ82hngPjFVIihU2rSolLBqHxQTNsP8puYPaY=";
};
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [
bash-completion
libdrm
libpciaccess
llvmPackages.llvm
ncurses
];
# Remove static libraries (there are no dynamic libraries in there)
postInstall = ''
rm -r $out/lib
'';
meta = with lib; {
description = "A userspace debugging and diagnostic tool for AMD GPUs";
homepage = "https://gitlab.freedesktop.org/tomstdenis/umr";
license = licenses.mit;
maintainers = with maintainers; [ Flakebi ];
platforms = platforms.linux;
};
}

View file

@ -11731,6 +11731,10 @@ in
pharo-spur64 = assert stdenv.is64bit; pharo-vms.spur64;
pharo-launcher = callPackage ../development/pharo/launcher { };
umr = callPackage ../development/misc/umr {
llvmPackages = llvmPackages_latest;
};
srandrd = callPackage ../tools/X11/srandrd { };
srecord = callPackage ../development/tools/misc/srecord { };