Merge pull request #192972 from astro/oxtools

This commit is contained in:
Sandro 2022-09-29 11:41:47 +02:00 committed by GitHub
commit a559091fc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View file

@ -0,0 +1,36 @@
{ lib, stdenv, fetchFromGitHub
, glibc, python3
}:
stdenv.mkDerivation rec {
pname = "0xtools";
version = "1.1.3";
src = fetchFromGitHub {
owner = "tanelpoder";
repo = pname;
rev = "v${version}";
sha256 = "sha256-pe64st3yhVfZi8/sTEfH1cNjx7JpqxDmxMmodpXnqaU=";
};
postPatch = ''
substituteInPlace lib/0xtools/proc.py \
--replace /usr/include/asm/unistd_64.h ${glibc.dev}/include/asm/unistd_64.h
'';
buildInputs = [ python3 ];
makeFlags = [ "PREFIX=${placeholder "out"}" ];
preInstall = ''
mkdir -p $out/bin
'';
meta = with lib; {
description = "Utilities for analyzing application performance";
homepage = "https://0x.tools";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ astro ];
platforms = [ "x86_64-linux" ];
};
}

View file

@ -24870,6 +24870,8 @@ with pkgs;
open-vm-tools = callPackage ../applications/virtualization/open-vm-tools { };
open-vm-tools-headless = open-vm-tools.override { withX = false; };
oxtools = callPackage ../os-specific/linux/oxtools { };
air = callPackage ../development/tools/air { };
delve = callPackage ../development/tools/delve { };