mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
32 lines
684 B
Nix
32 lines
684 B
Nix
{ lib, stdenv, fetchFromGitLab, meson, pkg-config, ninja, cairo }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pscircle";
|
|
version = "1.4.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "mildlyparallel";
|
|
repo = "pscircle";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-bqbQBNscNfoqXprhoFUnUQO88YQs9xDhD4d3KHamtG0=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
meson
|
|
pkg-config
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|