mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
libsass: 3.1.0 -> 3.2.2
This commit is contained in:
parent
8ea440b59b
commit
5f874466eb
@ -1,27 +1,25 @@
|
||||
{ stdenv, lib, fetchFromGitHub, autoconf, automake, libtool }:
|
||||
{ stdenv, fetchurl, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "libsass-${version}";
|
||||
version = "3.1.0";
|
||||
version = "3.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sass";
|
||||
repo = "libsass";
|
||||
rev = version;
|
||||
sha256 = "1k9a6hiybqk7xx4k2cb9vhdqskrrzhi60dvwp3gx39jhjqjfl96p";
|
||||
src = fetchurl {
|
||||
url = "https://github.com/sass/libsass/archive/${version}.tar.gz";
|
||||
sha256 = "022rvsnqslds1ss6ls1x1w93mrhq7nigd00wjlnd07qhfqpbnwax";
|
||||
};
|
||||
|
||||
preConfigure = ''
|
||||
autoreconf --force --install
|
||||
patchPhase = ''
|
||||
export LIBSASS_VERSION=${version}
|
||||
'';
|
||||
|
||||
buildInputs = [ autoconf automake libtool ];
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = with lib; {
|
||||
meta = with stdenv.lib; {
|
||||
description = "A C/C++ implementation of a Sass compiler";
|
||||
license = licenses.mit;
|
||||
homepage = https://github.com/sass/libsass;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ offline ];
|
||||
platforms = with platforms; unix;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user