14 stdenv.mkDerivation (finalAttrs: {
16 version = "3.6.6"; # also check sassc for updates
18 src = fetchFromGitHub {
21 rev = finalAttrs.version;
22 hash = "sha256-FkLL3OAJXDptRQY6ZkYbss2pcc40f/wasIvEIyHRQFo=";
23 # Remove unicode file names which leads to different checksums on HFS+
24 # vs. other filesystems because of unicode normalisation.
26 rm -r $out/test/e2e/unicode-pwd
31 export LIBSASS_VERSION=${finalAttrs.version}
34 nativeBuildInputs = [ autoreconfHook ];
36 enableParallelBuilding = true;
39 inherit gtk3 gtk4 sassc;
40 pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
44 description = "C/C++ implementation of a Sass compiler";
45 homepage = "https://github.com/sass/libsass";
46 license = licenses.mit;
47 maintainers = with maintainers; [
51 pkgConfigModules = [ "libsass" ];
52 platforms = platforms.unix;