mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #114754 from Flakebi/umr
umr: init at unstable-2021-02-18
This commit is contained in:
commit
7b351a2ef7
2 changed files with 41 additions and 0 deletions
37
pkgs/development/misc/umr/default.nix
Normal file
37
pkgs/development/misc/umr/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -11753,6 +11753,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 { };
|
||||
|
|
Loading…
Reference in a new issue