nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 rustPlatform,
4 fetchFromGitHub,
5}:
6
7rustPlatform.buildRustPackage rec {
8 pname = "rustywind";
9 version = "0.24.3";
10
11 src = fetchFromGitHub {
12 owner = "avencera";
13 repo = "rustywind";
14 rev = "v${version}";
15 hash = "sha256-qbOlU7kqVbB/sQg4b78CohOwQbraulZ8dRxeT+39rFk=";
16 };
17
18 cargoHash = "sha256-eXTdPtcsWhsABZU6kRzZ6eF1VaabouZwLAFI9KpAx98=";
19
20 meta = {
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 = lib.licenses.asl20;
26 maintainers = [ ];
27 };
28}