2022-09-30 11:47:45 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate }:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rsass";
|
2024-06-20 14:57:18 +00:00
|
|
|
version = "0.28.10";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
|
|
|
src = fetchCrate {
|
2023-02-02 18:25:31 +00:00
|
|
|
pname = "rsass-cli";
|
|
|
|
inherit version;
|
2024-06-20 14:57:18 +00:00
|
|
|
hash = "sha256-/2U1+kCRpM36r2fHB6Hditnm2dSVHh08M0RIi3AIe44=";
|
2022-09-30 11:47:45 +00:00
|
|
|
};
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
cargoHash = "sha256-pCQOFBs+lNdjcyOqZ/GjJyOthepnaWAM1feEpegdrDo=";
|
2022-09-30 11:47:45 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Sass reimplemented in rust with nom";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "rsass";
|
2022-09-30 11:47:45 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|