···11+{ stdenv, fetchurl, ... }:
22+let
33+ version = "1.7.3.0";
44+in fetchurl {
55+ name = "prototype-${version}.js";
66+ url = "https://ajax.googleapis.com/ajax/libs/prototype/${version}/prototype.js";
77+ sha256 = "0q43vvrsb22h4jvavs1gk3v4ps61yx9k85b5n6q9mxivhmxprg26";
88+99+ meta = with stdenv.lib; {
1010+ description = "A foundation for ambitious web user interfaces";
1111+ longDescription = ''
1212+ Prototype takes the complexity out of client-side web
1313+ programming. Built to solve real-world problems, it adds
1414+ useful extensions to the browser scripting environment
1515+ and provides elegant APIs around the clumsy interfaces
1616+ of Ajax and the Document Object Model.
1717+ '';
1818+ homepage = http://prototypejs.org/;
1919+ downloadPage = http://prototypejs.org/download/;
2020+ license = licenses.mit;
2121+ maintainers = with maintainers; [ das_j ];
2222+ };
2323+}