python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / prototypejs / default.nix
blobfd06b49604add57c4ee8c9dc41637fdd84d040f4
1 { lib, fetchurl, ... }:
2 let
3   version = "1.7.3.0";
4 in fetchurl {
5   name = "prototype-${version}.js";
6   url = "https://ajax.googleapis.com/ajax/libs/prototype/${version}/prototype.js";
7   sha256 = "0q43vvrsb22h4jvavs1gk3v4ps61yx9k85b5n6q9mxivhmxprg26";
9   meta = with lib; {
10     description = "A foundation for ambitious web user interfaces";
11     longDescription = ''
12       Prototype takes the complexity out of client-side web
13       programming. Built to solve real-world problems, it adds
14       useful extensions to the browser scripting environment
15       and provides elegant APIs around the clumsy interfaces
16       of Ajax and the Document Object Model.
17     '';
18     homepage = "http://prototypejs.org/";
19     downloadPage = "http://prototypejs.org/download/";
20     license = licenses.mit;
21     maintainers = with maintainers; [ das_j ];
22   };