about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-04 16:38:02 +0100
committerGitHub <noreply@github.com>2021-01-04 16:38:02 +0100
commita61f47d445b6071c90095c9b87cebe218ab78c95 (patch)
tree783d6454b2962660cf05ee6b1792235a60589c96 /pkgs
parentd92659f1e974bc9034876ee8ed8c43923812ad40 (diff)
parentba330148c6e27a352b9e80566c534305292023fa (diff)
downloadnixlib-a61f47d445b6071c90095c9b87cebe218ab78c95.tar
nixlib-a61f47d445b6071c90095c9b87cebe218ab78c95.tar.gz
nixlib-a61f47d445b6071c90095c9b87cebe218ab78c95.tar.bz2
nixlib-a61f47d445b6071c90095c9b87cebe218ab78c95.tar.lz
nixlib-a61f47d445b6071c90095c9b87cebe218ab78c95.tar.xz
nixlib-a61f47d445b6071c90095c9b87cebe218ab78c95.tar.zst
nixlib-a61f47d445b6071c90095c9b87cebe218ab78c95.zip
Merge pull request #108383 from fabaff/bump-fatrace
fatrace: 0.13 -> 0.16.1
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/fatrace/default.nix21
1 files changed, 12 insertions, 9 deletions
diff --git a/pkgs/os-specific/linux/fatrace/default.nix b/pkgs/os-specific/linux/fatrace/default.nix
index 69d1afad8a68..62767f682785 100644
--- a/pkgs/os-specific/linux/fatrace/default.nix
+++ b/pkgs/os-specific/linux/fatrace/default.nix
@@ -1,12 +1,18 @@
-{ stdenv, fetchurl, python3, which }:
+{ stdenv
+, fetchFromGitHub
+, python3
+, which
+}:
 
 stdenv.mkDerivation rec {
   pname = "fatrace";
-  version = "0.13";
+  version = "0.16.1";
 
-  src = fetchurl {
-    url = "https://launchpad.net/fatrace/trunk/${version}/+download/${pname}-${version}.tar.bz2";
-    sha256 = "0hrh45bpzncw0jkxw3x2smh748r65k2yxvfai466043bi5q0d2vx";
+  src = fetchFromGitHub {
+    owner = "martinpitt";
+    repo = pname;
+    rev = version;
+    sha256 = "0lxfqin2bw9235yah8ylb4p8lc3755050sjg30z3gy7bab0lfyg9";
   };
 
   buildInputs = [ python3 which ];
@@ -14,16 +20,13 @@ stdenv.mkDerivation rec {
   postPatch = ''
     substituteInPlace power-usage-report \
       --replace "'which'" "'${which}/bin/which'"
-
-    # Avoid a glibc >= 2.25 deprecation warning that gets fatal via -Werror.
-    sed 1i'#include <sys/sysmacros.h>' -i fatrace.c
   '';
 
   makeFlags = [ "PREFIX=$(out)" ];
 
   meta = with stdenv.lib; {
     description = "Report system-wide file access events";
-    homepage = "https://launchpad.net/fatrace/";
+    homepage = "https://github.com/martinpitt/fatrace";
     license = licenses.gpl3Plus;
     longDescription = ''
       fatrace reports file access events from all running processes.