Merge pull request #42870 from ldesgoui/add-pscircle

pscircle: init at v1.0.0
This commit is contained in:
Matthew Bauer 2018-07-05 21:48:25 -04:00 committed by GitHub
commit 0ce00ea660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 30 additions and 0 deletions

View 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;
};
}

View File

@ -4611,6 +4611,8 @@ with pkgs;
ps3netsrv = callPackage ../servers/ps3netsrv { };
pscircle = callPackage ../os-specific/linux/pscircle { };
psmisc = callPackage ../os-specific/linux/psmisc { };
pssh = callPackage ../tools/networking/pssh { };