Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
777 B
Nix
42 lines
777 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
libsass,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "sassc";
|
|
version = "3.6.2"; # also check libsass for updates
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sass";
|
|
repo = "sassc";
|
|
rev = version;
|
|
sha256 = "sha256-jcs3+orRqKt9C3c2FTdeaj4H2rBP74lW3HF8CHSm7lQ=";
|
|
};
|
|
|
|
postPatch = ''
|
|
export SASSC_VERSION=${version}
|
|
'';
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ libsass ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Front-end for libsass";
|
|
homepage = "https://github.com/sass/sassc/";
|
|
license = licenses.mit;
|
|
mainProgram = "sassc";
|
|
maintainers = with maintainers; [
|
|
codyopel
|
|
pjones
|
|
];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|