Merge pull request #192972 from astro/oxtools
This commit is contained in:
commit
a559091fc6
2 changed files with 38 additions and 0 deletions
36
pkgs/os-specific/linux/oxtools/default.nix
Normal file
36
pkgs/os-specific/linux/oxtools/default.nix
Normal 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" ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue