Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 rustPlatform, 4 fetchFromGitHub, 5}: 6 7rustPlatform.buildRustPackage rec { 8 pname = "rustywind"; 9 version = "0.24.0"; 10 11 src = fetchFromGitHub { 12 owner = "avencera"; 13 repo = "rustywind"; 14 rev = "v${version}"; 15 hash = "sha256-3cLpyY2Ec3XUDUoq4QLyDx8Nr85TOevBkfoReguVGII="; 16 }; 17 18 cargoHash = "sha256-jq8d+ndPOu07YO5PJ5YfWTeG70bZnr0i8vMwv7Dw5GY="; 19 20 meta = with lib; { 21 description = "CLI for organizing Tailwind CSS classes"; 22 mainProgram = "rustywind"; 23 homepage = "https://github.com/avencera/rustywind"; 24 changelog = "https://github.com/avencera/rustywind/blob/${src.rev}/CHANGELOG.md"; 25 license = licenses.asl20; 26 maintainers = with maintainers; [ figsoda ]; 27 }; 28}