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

28 lines
666 B
Nix
Raw Normal View History

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