summary refs log blame commit diff
path: root/pkgs/os-specific/linux/pscircle/default.nix
blob: ef7dbc55a9ab99d9b5bdd0f51c69d4a6454ed3be (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                                  

                         
                     
                    




                             
                                                                    



                 
                



           
                    
                                                            





                                                                         
{ lib, stdenv, fetchFromGitLab, meson, pkg-config, ninja, cairo }:

stdenv.mkDerivation rec {
  pname = "pscircle";
  version = "1.3.1";

  src = fetchFromGitLab {
    owner = "mildlyparallel";
    repo = "pscircle";
    rev = "v${version}";
    sha256 = "1sm99423hh90kr4wdjqi9sdrrpk65j2vz2hzj65zcxfxyr6khjci";
  };

  buildInputs = [
      meson
      pkg-config
      cairo
      ninja
  ];

  meta = with lib; {
    homepage = "https://gitlab.com/mildlyparallel/pscircle";
    description = "Visualize Linux processes in a form of a radial tree";
    license = licenses.gpl2;
    maintainers = [ maintainers.ldesgoui ];
    platforms = platforms.linux;
  };
}