summary refs log tree commit diff
path: root/pkgs/os-specific/linux/oxtools
diff options
context:
space:
mode:
authorAstro <astro@spaceboyz.net>2022-09-26 01:41:04 +0200
committerAstro <astro@spaceboyz.net>2022-09-29 00:13:03 +0200
commit9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e (patch)
tree4bb4e74219a3ce01f2e89e3912a9d0ee56fc012b /pkgs/os-specific/linux/oxtools
parenta8b721d4960189a6366f77baa3fd75b5673fac08 (diff)
downloadnixpkgs-9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e.tar
nixpkgs-9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e.tar.gz
nixpkgs-9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e.tar.bz2
nixpkgs-9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e.tar.lz
nixpkgs-9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e.tar.xz
nixpkgs-9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e.tar.zst
nixpkgs-9cf49ea910dc9b471daf4eead0b3ee4a6174bc9e.zip
oxtools: init at 1.1.3
Diffstat (limited to 'pkgs/os-specific/linux/oxtools')
-rw-r--r--pkgs/os-specific/linux/oxtools/default.nix36
1 files changed, 36 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/oxtools/default.nix b/pkgs/os-specific/linux/oxtools/default.nix
new file mode 100644
index 00000000000..02afb28e66e
--- /dev/null
+++ b/pkgs/os-specific/linux/oxtools/default.nix
@@ -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" ];
+  };
+}