tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
pscircle: init at 1.0.0
ldesgoui
7 years ago
60d0e807
f06ce583
+30
2 changed files
expand all
collapse all
unified
split
pkgs
os-specific
linux
pscircle
default.nix
top-level
all-packages.nix
+28
pkgs/os-specific/linux/pscircle/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
1
+
{ stdenv, fetchFromGitLab, meson, pkgconfig, ninja, cairo }:
2
+
3
+
stdenv.mkDerivation rec {
4
+
name = "pscircle-${version}";
5
+
version = "1.0.0";
6
+
7
+
src = fetchFromGitLab {
8
+
owner = "mildlyparallel";
9
+
repo = "pscircle";
10
+
rev = "v${version}";
11
+
sha256 = "188d0db62215pycmx2qfmbbjpmih03vigsz2j448zhsbyxapavv3";
12
+
};
13
+
14
+
buildInputs = [
15
+
meson
16
+
pkgconfig
17
+
cairo
18
+
ninja
19
+
];
20
+
21
+
meta = with stdenv.lib; {
22
+
homepage = https://gitlab.com/mildlyparallel/pscircle;
23
+
description = "Visualize Linux processes in a form of a radial tree";
24
+
license = licenses.gpl2;
25
+
maintainers = [ maintainers.ldesgoui ];
26
+
platforms = platforms.linux;
27
+
};
28
+
}
+2
pkgs/top-level/all-packages.nix
···
4624
4625
ps3netsrv = callPackage ../servers/ps3netsrv { };
4626
0
0
4627
psmisc = callPackage ../os-specific/linux/psmisc { };
4628
4629
pssh = callPackage ../tools/networking/pssh { };
···
4624
4625
ps3netsrv = callPackage ../servers/ps3netsrv { };
4626
4627
+
pscircle = callPackage ../os-specific/linux/pscircle { };
4628
+
4629
psmisc = callPackage ../os-specific/linux/psmisc { };
4630
4631
pssh = callPackage ../tools/networking/pssh { };