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/libraries/libsass/default.nix

26 lines
644 B

{ stdenv, fetchurl, autoreconfHook }:
9 years ago
stdenv.mkDerivation rec {
name = "libsass-${version}";
version = "3.2.2";
9 years ago
src = fetchurl {
url = "https://github.com/sass/libsass/archive/${version}.tar.gz";
sha256 = "022rvsnqslds1ss6ls1x1w93mrhq7nigd00wjlnd07qhfqpbnwax";
9 years ago
};
patchPhase = ''
export LIBSASS_VERSION=${version}
9 years ago
'';
nativeBuildInputs = [ autoreconfHook ];
9 years ago
meta = with stdenv.lib; {
9 years ago
description = "A C/C++ implementation of a Sass compiler";
homepage = https://github.com/sass/libsass;
license = licenses.mit;
9 years ago
maintainers = with maintainers; [ offline ];
platforms = platforms.unix;
9 years ago
};
}