My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/sassc/default.nix

29 lines
689 B

{ lib, stdenv, fetchFromGitHub, autoreconfHook, libsass }:
stdenv.mkDerivation rec {
pname = "sassc";
version = "3.6.2"; # also check libsass for updates
src = fetchFromGitHub {
owner = "sass";
repo = pname;
rev = version;
sha256 = "sha256-jcs3+orRqKt9C3c2FTdeaj4H2rBP74lW3HF8CHSm7lQ=";
};
postPatch = ''
export SASSC_VERSION=${version}
'';
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ libsass ];
meta = with lib; {
description = "A front-end for libsass";
homepage = "https://github.com/sass/sassc/";
license = licenses.mit;
maintainers = with maintainers; [ codyopel pjones ];
platforms = platforms.unix;
};
}