Merge recent master into staging

Hydra nixpkgs: ?compare=1156478
This commit is contained in:
Vladimír Čunát
2014-10-23 17:40:41 +02:00
271 changed files with 5900 additions and 2711 deletions

View File

@@ -10,12 +10,14 @@ let
# !!! Should we also do shared libuv?
deps = {
inherit openssl zlib http-parser;
inherit openssl zlib;
cares = c-ares;
# disabled system v8 because v8 3.14 no longer receives security fixes
# we fall back to nodejs' internal v8 copy which receives backports for now
# inherit v8
} // stdenv.lib.optionalAttrs (!stdenv.isDarwin) {
inherit http-parser;
};
sharedConfigureFlags = name: [

View File

@@ -1,13 +1,14 @@
{ stdenv, fetchgit, lessc, closurecompiler }:
{ stdenv, fetchFromGitHub, lessc, closurecompiler }:
stdenv.mkDerivation rec {
name = "twitter-bootstrap-${version}";
version = "2.3.2";
src = fetchgit {
url = https://github.com/twitter/bootstrap.git;
rev = "refs/tags/v${version}";
sha256 = "093z4yxqhrr30vna67ksxz3bq146q2xr05hinh78pg2ls88k77la";
src = fetchFromGitHub {
owner = "twitter";
repo = "bootstrap";
rev = "v${version}";
sha256 = "0b4dsk9sqlkwwfgqqjlgi6p05qz2jssmmz4adm83f31sx70lgh4g";
};
buildInputs = [ lessc closurecompiler ];