nixpkgs/pkgs/development/libraries/libsass/default.nix

33 lines
852 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, autoreconfHook }:
2015-02-14 23:33:36 +01:00
stdenv.mkDerivation rec {
pname = "libsass";
version = "3.6.1";
2015-02-14 23:33:36 +01:00
src = fetchFromGitHub {
owner = "sass";
repo = pname;
rev = version;
sha256 = "1599j2lbsygy3883x9si7rbad1pkjhl6y72aimaapcv90ga5kxkm";
# Remove unicode file names which leads to different checksums on HFS+
# vs. other filesystems because of unicode normalisation.
extraPostFetch = ''
rm -r $out/test/e2e/unicode-pwd
'';
2015-02-14 23:33:36 +01:00
};
preConfigure = ''
2015-05-07 15:50:50 +02:00
export LIBSASS_VERSION=${version}
2015-02-14 23:33:36 +01:00
'';
2015-05-07 15:50:50 +02:00
nativeBuildInputs = [ autoreconfHook ];
2015-02-14 23:33:36 +01:00
2015-05-07 15:50:50 +02:00
meta = with stdenv.lib; {
2015-02-14 23:33:36 +01:00
description = "A C/C++ implementation of a Sass compiler";
homepage = https://github.com/sass/libsass;
2015-05-07 15:50:50 +02:00
license = licenses.mit;
2015-06-01 07:27:46 +02:00
maintainers = with maintainers; [ codyopel offline ];
2015-05-07 15:50:50 +02:00
platforms = platforms.unix;
2015-02-14 23:33:36 +01:00
};
}