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

28 lines
678 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}";
2015-12-10 22:26:26 +00:00
version = "3.3.2";
2015-05-07 13:51:40 +00:00
src = fetchurl {
url = "https://github.com/sass/sassc/archive/${version}.tar.gz";
2015-12-10 22:26:26 +00:00
sha256 = "15a2b2698639dfdc7bd6a5ba7a9ecdaf8ebb9f15503fb04dea1be3133308e41d";
};
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;
2015-06-01 05:28:18 +00:00
maintainers = with maintainers; [ codyopel pjones ];
platforms = platforms.unix;
};
}