nixpkgs/pkgs/development/tools/sassc/default.nix

28 lines
657 B
Nix
Raw Normal View History

2015-05-07 13:51:40 +00:00
{ stdenv, fetchurl, autoreconfHook, libsass }:
stdenv.mkDerivation rec {
2015-05-07 13:51:40 +00:00
name = "sassc-${version}";
version = "3.2.1";
2015-05-07 13:51:40 +00:00
src = fetchurl {
url = "https://github.com/sass/sassc/archive/${version}.tar.gz";
sha256 = "18pp7ylcwfvfagvnpw660cdvv7cjl7pl9v8x7xr05fp2l6133rxw";
};
2015-05-07 13:51:40 +00:00
patchPhase = ''
export SASSC_VERSION=${version}
'';
2015-05-07 13:51:40 +00:00
nativeBuildInputs = [ autoreconfHook ];
2015-05-07 13:51:40 +00:00
buildInputs = [ libsass ];
meta = with stdenv.lib; {
description = "A front-end for libsass";
homepage = https://github.com/sass/sassc/;
2015-05-07 13:51:40 +00:00
license = licenses.mit;
maintainers = with maintainers; [ pjones ];
platforms = platforms.unix;
};
}