vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / by-name / st / stylance-cli / package.nix
blobb0154c709191242c3252575326b623caab31094a
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
5 rustPlatform.buildRustPackage rec {
6   pname = "stylance-cli";
7   version = "0.5.1";
9   src = fetchCrate {
10     inherit pname version;
11     hash = "sha256-kpii3Jwvqhzp+Kummr0ypI9vyYVOcYKK0xCPwQknuWY=";
12   };
14   cargoHash = "sha256-tVSMZW2umkSilgPs/J7iFoBxKISrh7D73q3JWh2dJhI=";
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   };