forkstat: 0.02.16 -> 0.02.17

Upstream has moved
(#151318)

authored by Renaud and committed by GitHub e6a70541 0f204288

+16 -11
+16 -11
pkgs/os-specific/linux/forkstat/default.nix
··· 1 - { stdenv, lib, fetchurl }: 2 3 stdenv.mkDerivation rec { 4 pname = "forkstat"; 5 - version = "0.02.16"; 6 - src = fetchurl { 7 - url = "https://kernel.ubuntu.com/~cking/tarballs/forkstat/forkstat-${version}.tar.xz"; 8 - sha256 = "1rrzvlws9725dy2jq5k4zfv669ngrb2klhla6wvir8nwh53jms4w"; 9 }; 10 - installFlags = [ "DESTDIR=$(out)" ]; 11 - postInstall = '' 12 - mv $out/usr/* $out 13 - rm -r $out/usr 14 - ''; 15 meta = with lib; { 16 description = "Process fork/exec/exit monitoring tool"; 17 - homepage = "https://kernel.ubuntu.com/~cking/forkstat/"; 18 license = licenses.gpl2; 19 platforms = platforms.linux; 20 maintainers = with maintainers; [ womfoo ];
··· 1 + { stdenv, lib, fetchFromGitHub }: 2 3 stdenv.mkDerivation rec { 4 pname = "forkstat"; 5 + version = "0.02.17"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "ColinIanKing"; 9 + repo = pname; 10 + rev = "V${version}"; 11 + hash = "sha256-Rw1Xwst0+seksTLL+v3IUEojGjwCERwF89xkk70npUU="; 12 }; 13 + 14 + installFlags = [ 15 + "BINDIR=${placeholder "out"}/bin" 16 + "MANDIR=${placeholder "out"}/share/man/man8" 17 + "BASHDIR=${placeholder "out"}/share/bash-completion/completions" 18 + ]; 19 + 20 meta = with lib; { 21 description = "Process fork/exec/exit monitoring tool"; 22 + homepage = "https://github.com/ColinIanKing/forkstat"; 23 license = licenses.gpl2; 24 platforms = platforms.linux; 25 maintainers = with maintainers; [ womfoo ];