grass-sass: init at 0.12.3
This commit is contained in:
parent
a12fc54f19
commit
4191f2c183
2 changed files with 29 additions and 0 deletions
27
pkgs/tools/misc/grass-sass/default.nix
Normal file
27
pkgs/tools/misc/grass-sass/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "grass";
|
||||
version = "0.12.3";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-qx63icK4g/5LqKUsJpXs2Jpv30RuvIeLF6JNrTTkcLs=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-v2ikP+zujj6GWN1ZwPIKK0jtF8Na5PaR1ZNelGdLzMM=";
|
||||
|
||||
# tests require rust nightly
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Sass compiler written purely in Rust";
|
||||
homepage = "https://github.com/connorskees/grass";
|
||||
changelog = "https://github.com/connorskees/grass/blob/master/CHANGELOG.md#${replaceStrings [ "." ] [ "" ] version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
|
@ -7957,6 +7957,8 @@ with pkgs;
|
|||
libdevil = libdevil-nox;
|
||||
};
|
||||
|
||||
grass-sass = callPackage ../tools/misc/grass-sass { };
|
||||
|
||||
gridtracker = callPackage ../applications/radio/gridtracker { };
|
||||
|
||||
grig = callPackage ../applications/radio/grig { };
|
||||
|
|
Loading…
Reference in a new issue