twitterBootstrap3: init at 3.3.7 (#19852)
This commit is contained in:
parent
6b964d953a
commit
65fe0e98d7
26
pkgs/development/web/twitter-bootstrap/v3.nix
Normal file
26
pkgs/development/web/twitter-bootstrap/v3.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ stdenv, fetchurl, unzip }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "bootstrap-${version}";
|
||||
version = "3.3.7";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/twbs/bootstrap/releases/download/v${version}/bootstrap-${version}-dist.zip";
|
||||
sha256 = "0yqvg72knl7a0rlszbpk7xf7f0cs3aqf9xbl42ff41yh5pzsi67l";
|
||||
};
|
||||
|
||||
buildInputs = [ unzip ];
|
||||
|
||||
dontBuild = true;
|
||||
installPhase = ''
|
||||
mkdir $out
|
||||
cp -r * $out/
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Front-end framework for faster and easier web development";
|
||||
homepage = http://getbootstrap.com/;
|
||||
license = stdenv.lib.licenses.mit;
|
||||
};
|
||||
|
||||
}
|
@ -3931,6 +3931,7 @@ in
|
||||
ttylog = callPackage ../tools/misc/ttylog { };
|
||||
|
||||
twitterBootstrap = callPackage ../development/web/twitter-bootstrap {};
|
||||
twitterBootstrap3 = callPackage ../development/web/twitter-bootstrap/v3.nix {};
|
||||
|
||||
txt2man = callPackage ../tools/misc/txt2man { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user