oxtools: init at 1.1.3
This commit is contained in:
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" ];
|
||||
};
|
||||
}
|
||||
@@ -24865,6 +24865,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 { };
|
||||
|
||||
Reference in New Issue
Block a user