hyprwall: 0.1.8 -> 0.1.9 (#358466)
[NixPkgs.git] / pkgs / by-name / st / stylance-cli / package.nix
blobfd01a5acf180e0f69586ec4827c52b54406a782a
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "stylance-cli";
7   version = "0.5.2";
9   src = fetchCrate {
10     inherit pname version;
11     hash = "sha256-2RLdO2TxIa/ngji5tzKzSfpq2qErI7gaQqObDTMrd/g=";
12   };
14   cargoHash = "sha256-26EKLvqc9x7JT6EDkH9KbQJ+xX/CUslLmEF4XxnPbFY=";
16   meta = with lib; {
17     description = "Library and cli tool for working with scoped CSS in rust";
18     mainProgram = "stylance";
19     homepage = "https://github.com/basro/stylance-rs";
20     changelog = "https://github.com/basro/stylance-rs/blob/v${version}/CHANGELOG.md";
21     license = with licenses; [ mit ];
22     maintainers = with maintainers; [ dav-wolff ];
23   };