Merge pull request #65849 from marsam/drop-twitterBootstrap3

twitterBootstrap3: drop
This commit is contained in:
Robin Gloster 2019-08-03 15:47:16 +00:00 committed by GitHub
commit 7d2f45c19d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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; };