Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at netboot-syslinux-multiplatform 22 lines 588 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "pcstat"; 5 version = "0.0.1"; 6 7 src = fetchFromGitHub { 8 owner = "tobert"; 9 repo = "pcstat"; 10 rev = "v${version}"; 11 sha256 = "sha256-rN6oqhvrzMBhwNLm8+r4rZWZYZUhOq2h764KVhSycNo="; 12 }; 13 14 vendorSha256 = "sha256-1y6rzarkFNX8G4E9FzCLfWxULbdNYK3DeelNCJ+7Y9Q="; 15 16 meta = with lib; { 17 description = "Page Cache stat: get page cache stats for files on Linux"; 18 homepage = "https://github.com/tobert/pcstat"; 19 license = licenses.asl20; 20 maintainers = with maintainers; [ aminechikhaoui ]; 21 }; 22}