Merge pull request #290782 from dav-wolff/init-stylance-cli

stylance-cli: init at 0.3.0
This commit is contained in:
Aleksana 2024-04-06 22:43:58 +08:00 committed by GitHub
commit 00138f7fd7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 30 additions and 0 deletions

View File

@ -4517,6 +4517,12 @@
githubId = 11422515;
name = "David Sánchez";
};
dav-wolff = {
email = "dav-wolff@outlook.com";
github = "dav-wolff";
githubId = 130931508;
name = "David Wolff";
};
dawidd6 = {
email = "dawidd0811@gmail.com";
github = "dawidd6";

View File

@ -0,0 +1,24 @@
{ lib
, rustPlatform
, fetchCrate
}:
rustPlatform.buildRustPackage rec {
pname = "stylance-cli";
version = "0.3.0";
src = fetchCrate {
inherit pname version;
hash = "sha256-YQYYZxLypD5Nz8kllIaBFDoV8L2c9wzJwmszqPpjpmg=";
};
cargoHash = "sha256-ZzdLbsHRBgprdzmPVzywJx+wMMqRBsLeT84UIDMJbQM=";
meta = with lib; {
description = "A library and cli tool for working with scoped CSS in rust";
mainProgram = "stylance";
homepage = "https://github.com/basro/stylance-rs";
changelog = "https://github.com/basro/stylance-rs/blob/v${version}/CHANGELOG.md";
license = with licenses; [ mit ];
maintainers = with maintainers; [ dav-wolff ];
};
}