Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 stdenvNoCC, 4 rustPlatform, 5 fetchFromGitHub, 6}: 7 8rustPlatform.buildRustPackage rec { 9 pname = "owofetch"; 10 11 version = "0.3.1"; 12 13 src = fetchFromGitHub { 14 owner = "netthier"; 15 repo = "owofetch-rs"; 16 rev = "v${version}"; 17 sha256 = "sha256-I8mzOUvm72KLLBumpgn9gNyx9FKvUrB4ze1iM1+OA18="; 18 }; 19 20 cargoHash = "sha256-0ON1h8+ruLOvBR7Q/hOIW6j+BjfPAAuYA2wrUYj59Ow="; 21 22 meta = with lib; { 23 description = "Alternative to *fetch, uwuifies all stats"; 24 homepage = "https://github.com/netthier/owofetch-rs"; 25 license = licenses.gpl3Only; 26 platforms = platforms.x86_64; 27 maintainers = with maintainers; [ nullishamy ]; 28 mainProgram = "owofetch"; 29 }; 30}