1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/os-specific/linux/forkstat/default.nix
R. RyanTM 9f31c8f82f forkstat: 0.02.09 -> 0.02.10
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/forkstat/versions
2019-07-15 04:05:51 -07:00

23 lines
656 B
Nix

{ stdenv, lib, fetchurl }:
stdenv.mkDerivation rec {
name = "forkstat-${version}";
version = "0.02.10";
src = fetchurl {
url = "https://kernel.ubuntu.com/~cking/tarballs/forkstat/forkstat-${version}.tar.xz";
sha256 = "1nmnvgajvpas1azbr27nlgq5v3cwgrfwdhln3mr7dvhikz6rn0xg";
};
installFlags = [ "DESTDIR=$(out)" ];
postInstall = ''
mv $out/usr/* $out
rm -r $out/usr
'';
meta = with lib; {
description = "Process fork/exec/exit monitoring tool";
homepage = https://kernel.ubuntu.com/~cking/forkstat/;
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo ];
};
}