biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / system / zps / default.nix
blob62a9efe7d7d93799bff1eb90cf74170901bc4921
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 }:
7 stdenv.mkDerivation rec {
8   pname = "zps";
9   version = "2.0.0";
11   src = fetchFromGitHub {
12     owner = "orhun";
13     repo = "zps";
14     rev = version;
15     hash = "sha256-t+y+m9cwngVlX5o7FQTI4FMj10bN0euH51DmAnOAvPc=";
16   };
18   nativeBuildInputs = [
19     cmake
20   ];
22   postInstall = ''
23     mkdir -p $out/share/applications
24     substitute ../.application/zps.desktop $out/share/applications/zps.desktop \
25       --replace Exec=zps Exec=$out/zps \
26   '';
28   meta = with lib; {
29     description = "Small utility for listing and reaping zombie processes on GNU/Linux";
30     homepage = "https://github.com/orhun/zps";
31     changelog = "https://github.com/orhun/zps/releases/tag/${version}";
32     license = licenses.gpl3Only;
33     maintainers = with maintainers; [ figsoda ];
34     platforms = platforms.linux;
35     mainProgram = "zps";
36   };