lol
1{ lib, rustPlatform, fetchCrate }:
2
3rustPlatform.buildRustPackage rec {
4 pname = "rsass";
5 version = "0.28.0";
6
7 src = fetchCrate {
8 pname = "rsass-cli";
9 inherit version;
10 hash = "sha256-hBYZB/Jyzd89dylZn2tYdHr0IXCFgJi9TnvuoVqCR1A=";
11 };
12
13 cargoHash = "sha256-nVTYTjmHB/z5M5AyojbsuZNCa3JCiADWrgV5eb3bcUE=";
14
15 meta = with lib; {
16 description = "Sass reimplemented in rust with nom";
17 homepage = "https://github.com/kaj/rsass";
18 changelog = "https://github.com/kaj/rsass/blob/v${version}/CHANGELOG.md";
19 license = with licenses; [ mit /* or */ asl20 ];
20 maintainers = with maintainers; [ figsoda ];
21 };
22}