summary refs log tree commit diff
path: root/pkgs/development/libraries/prototypejs/default.nix
blob: a56b14384e5bb7bc3e9be52c90e15edd1a31321e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, ... }:
let
  version = "1.7.3.0";
in fetchurl {
  name = "prototype-${version}.js";
  url = "https://ajax.googleapis.com/ajax/libs/prototype/${version}/prototype.js";
  sha256 = "0q43vvrsb22h4jvavs1gk3v4ps61yx9k85b5n6q9mxivhmxprg26";

  meta = with stdenv.lib; {
    description = "A foundation for ambitious web user interfaces";
    longDescription = ''
      Prototype takes the complexity out of client-side web
      programming. Built to solve real-world problems, it adds
      useful extensions to the browser scripting environment
      and provides elegant APIs around the clumsy interfaces
      of Ajax and the Document Object Model.
    '';
    homepage = http://prototypejs.org/;
    downloadPage = http://prototypejs.org/download/;
    license = licenses.mit;
    maintainers = with maintainers; [ das_j ];
  };
}