nixpkgs/pkgs/os-specific/linux/pscircle/default.nix
Vladimír Čunát 2e6bf42a22
Merge branch 'master' into staging-next
There ver very many conflicts, basically all due to
name -> pname+version.  Fortunately, almost everything was auto-resolved
by kdiff3, and for now I just fixed up a couple evaluation problems,
as verified by the tarball job.  There might be some fallback to these
conflicts, but I believe it should be minimal.

Hydra nixpkgs: ?compare=1538299
2019-08-24 08:55:37 +02:00

29 lines
661 B
Nix

{ stdenv, fetchFromGitLab, meson, pkgconfig, ninja, cairo }:
stdenv.mkDerivation rec {
pname = "pscircle";
version = "1.3.1";
src = fetchFromGitLab {
owner = "mildlyparallel";
repo = "pscircle";
rev = "v${version}";
sha256 = "1sm99423hh90kr4wdjqi9sdrrpk65j2vz2hzj65zcxfxyr6khjci";
};
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;
};
}