sassc: 3.6.1 -> 3.6.2, add comment to keep in sync with libsass

Closes #135274
This commit is contained in:
Sandro Jäckel 2021-11-12 18:22:33 +01:00
parent dd7883c4e6
commit 3cc3a7626d
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
stdenv.mkDerivation rec {
pname = "libsass";
version = "3.6.5";
version = "3.6.5"; # also check sassc for updates
src = fetchFromGitHub {
owner = "sass";

View file

@ -2,16 +2,16 @@
stdenv.mkDerivation rec {
pname = "sassc";
version = "3.6.1";
version = "3.6.2"; # also check libsass for updates
src = fetchFromGitHub {
owner = "sass";
repo = pname;
rev = version;
sha256 = "1sxm54mkhs9m4vnl7vn11y17mhzamc403hv3966j1c7p2rbzg5pv";
sha256 = "sha256-jcs3+orRqKt9C3c2FTdeaj4H2rBP74lW3HF8CHSm7lQ=";
};
patchPhase = ''
preConfigure = ''
export SASSC_VERSION=${version}
'';