2022-09-28 15:35:54 +02:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rsass";
|
2023-07-12 01:10:25 +02:00
|
|
|
version = "0.28.0";
|
2022-09-28 15:35:54 +02:00
|
|
|
|
|
|
|
src = fetchCrate {
|
2023-01-25 16:35:19 +01:00
|
|
|
pname = "rsass-cli";
|
|
|
|
inherit version;
|
2023-07-12 01:10:25 +02:00
|
|
|
hash = "sha256-hBYZB/Jyzd89dylZn2tYdHr0IXCFgJi9TnvuoVqCR1A=";
|
2022-09-28 15:35:54 +02:00
|
|
|
};
|
|
|
|
|
2023-07-12 01:10:25 +02:00
|
|
|
cargoHash = "sha256-nVTYTjmHB/z5M5AyojbsuZNCa3JCiADWrgV5eb3bcUE=";
|
2022-09-28 15:35:54 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Sass reimplemented in rust with nom";
|
|
|
|
homepage = "https://github.com/kaj/rsass";
|
|
|
|
changelog = "https://github.com/kaj/rsass/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = with licenses; [ mit /* or */ asl20 ];
|
|
|
|
maintainers = with maintainers; [ figsoda ];
|
|
|
|
};
|
|
|
|
}
|