Merge pull request #193335 from figsoda/rsass
This commit is contained in:
commit
2f30808dc5
2 changed files with 25 additions and 0 deletions
23
pkgs/development/tools/misc/rsass/default.nix
Normal file
23
pkgs/development/tools/misc/rsass/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, rustPlatform, fetchCrate }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rsass";
|
||||
version = "0.26.0";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-Ksub+VYTbaWbFpHJFrMr6Dnx6LOnEOUlI2qHhCfbS40=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-ugG4ivQ2NzLJeZss7h9TME2Aipurl1LZBgxt1cYaK2E=";
|
||||
|
||||
buildFeatures = [ "commandline" ];
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -17269,6 +17269,8 @@ with pkgs;
|
|||
|
||||
rr = callPackage ../development/tools/analysis/rr { };
|
||||
|
||||
rsass = callPackage ../development/tools/misc/rsass { };
|
||||
|
||||
rufo = callPackage ../development/tools/rufo { };
|
||||
|
||||
samurai = callPackage ../development/tools/build-managers/samurai { };
|
||||
|
|
Loading…
Reference in a new issue