summary refs log tree commit diff
path: root/pkgs/os-specific/linux/pscircle/default.nix
blob: a334465fb71d59716934fcec717e67d0e64d2664 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchFromGitLab, meson, pkgconfig, ninja, cairo }:

stdenv.mkDerivation rec {
  name = "pscircle-${version}";
  version = "1.0.0";

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

  buildInputs = [
      meson
      pkgconfig
      cairo
      ninja
  ];

  meta = with stdenv.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;
  };
}