Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 32 lines 716 B view raw
1{ lib, stdenv, fetchFromGitLab, meson, pkg-config, ninja, cairo }: 2 3stdenv.mkDerivation rec { 4 pname = "pscircle"; 5 version = "1.4.0"; 6 7 src = fetchFromGitLab { 8 owner = "mildlyparallel"; 9 repo = "pscircle"; 10 rev = "v${version}"; 11 hash = "sha256-bqbQBNscNfoqXprhoFUnUQO88YQs9xDhD4d3KHamtG0="; 12 }; 13 14 nativeBuildInputs = [ 15 meson 16 pkg-config 17 ninja 18 ]; 19 20 buildInputs = [ 21 cairo 22 ]; 23 24 meta = with lib; { 25 homepage = "https://gitlab.com/mildlyparallel/pscircle"; 26 description = "Visualize Linux processes in a form of a radial tree"; 27 mainProgram = "pscircle"; 28 license = licenses.gpl2Only; 29 maintainers = [ maintainers.ldesgoui ]; 30 platforms = platforms.linux; 31 }; 32}