twitterBootstrap3: drop

Bootstrap 3 has reached EOL in July 24, 2019. See: https://blog.getbootstrap.com/2019/07/24/lts-plan/
This commit is contained in:
Mario Rodas 2019-08-03 04:20:00 -05:00
parent 58f5c8e0cb
commit 6600dd177b
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
2 changed files with 1 additions and 29 deletions

View File

@ -1,26 +0,0 @@
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation rec {
name = "bootstrap-${version}";
version = "3.4.1";
src = fetchurl {
url = "https://github.com/twbs/bootstrap/releases/download/v${version}/bootstrap-${version}-dist.zip";
sha256 = "0bnrxyryl4kyq250k4n2lxgkddfs9lxhqd6gq8x3kg9wfz7r75yl";
};
buildInputs = [ unzip ];
dontBuild = true;
installPhase = ''
mkdir $out
cp -r * $out/
'';
meta = {
description = "Front-end framework for faster and easier web development";
homepage = https://getbootstrap.com/;
license = stdenv.lib.licenses.mit;
};
}

View File

@ -6481,9 +6481,7 @@ in
libX11 = xorg.libX11;
};
twitterBootstrap3 = callPackage ../development/web/twitter-bootstrap/3.nix {};
twitterBootstrap4 = callPackage ../development/web/twitter-bootstrap {};
twitterBootstrap = twitterBootstrap3;
twitterBootstrap = callPackage ../development/web/twitter-bootstrap {};
txr = callPackage ../tools/misc/txr { stdenv = clangStdenv; };