nixpkgs/pkgs/development/tools/misc/rsass/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
662 B
Nix
Raw Normal View History

2022-09-28 14:35:54 +01:00
{ lib, rustPlatform, fetchCrate }:
rustPlatform.buildRustPackage rec {
pname = "rsass";
2024-01-24 02:25:20 +00:00
version = "0.28.8";
2022-09-28 14:35:54 +01:00
src = fetchCrate {
pname = "rsass-cli";
inherit version;
2024-01-24 02:25:20 +00:00
hash = "sha256-eloTe7UHcPPmHEsGnfj3nIbZbBxSMFZdaSm5LpOh1S4=";
2022-09-28 14:35:54 +01:00
};
2024-01-24 02:25:20 +00:00
cargoHash = "sha256-57vqVKqwQOEB33cSzGiZwadTDi7EyBBRAS4X9Euwp5Q=";
2022-09-28 14:35:54 +01:00
meta = with lib; {
description = "Sass reimplemented in rust with nom";
mainProgram = "rsass";
2022-09-28 14:35:54 +01: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 ];
};
}