about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/prototypejs/default.nix
blob: fd06b49604add57c4ee8c9dc41637fdd84d040f4 (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
{ lib, 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 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 ];
  };
}