forked from mirrors/nixpkgs
pscircle: init at 1.0.0
This commit is contained in:
parent
f06ce58323
commit
60d0e80786
2 changed files with 30 additions and 0 deletions
pkgs
28
pkgs/os-specific/linux/pscircle/default.nix
Normal file
28
pkgs/os-specific/linux/pscircle/default.nix
Normal file
|
@ -0,0 +1,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;
|
||||
};
|
||||
}
|
|
@ -4624,6 +4624,8 @@ with pkgs;
|
|||
|
||||
ps3netsrv = callPackage ../servers/ps3netsrv { };
|
||||
|
||||
pscircle = callPackage ../os-specific/linux/pscircle { };
|
||||
|
||||
psmisc = callPackage ../os-specific/linux/psmisc { };
|
||||
|
||||
pssh = callPackage ../tools/networking/pssh { };
|
||||
|
|
Loading…
Add table
Reference in a new issue