nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at netboot-syslinux-multiplatform 21 lines 553 B view raw
1{ lib, python3Packages, fetchFromGitHub }: 2 3python3Packages.buildPythonApplication rec { 4 pname = "ps_mem"; 5 version = "3.13"; 6 7 src = fetchFromGitHub { 8 owner = "pixelb"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "0pgi9hvwfbkzvwicqlkwx4rwal1ikza018yxbwpnf7c80zw0zaw9"; 12 }; 13 14 meta = with lib; { 15 description = "A utility to accurately report the in core memory usage for a program"; 16 homepage = "https://github.com/pixelb/ps_mem"; 17 license = licenses.lgpl21; 18 maintainers = [ ]; 19 platforms = platforms.linux; 20 }; 21}