biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / misc / rsass / default.nix
blob0e2e4d57823a435ac2fb7a0e8c2970797c0a8a53
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rsass";
5   version = "0.28.8";
7   src = fetchCrate {
8     pname = "rsass-cli";
9     inherit version;
10     hash = "sha256-eloTe7UHcPPmHEsGnfj3nIbZbBxSMFZdaSm5LpOh1S4=";
11   };
13   cargoHash = "sha256-57vqVKqwQOEB33cSzGiZwadTDi7EyBBRAS4X9Euwp5Q=";
15   meta = with lib; {
16     description = "Sass reimplemented in rust with nom";
17     mainProgram = "rsass";
18     homepage = "https://github.com/kaj/rsass";
19     changelog = "https://github.com/kaj/rsass/blob/v${version}/CHANGELOG.md";
20     license = with licenses; [ mit /* or */ asl20 ];
21     maintainers = with maintainers; [ figsoda ];
22   };