lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

prototypejs: Init at 1.7.3.0 (#44428)

authored by

Janne Heß and committed by
xeji
2da02088 ec7865cd

+25
+23
pkgs/development/libraries/prototypejs/default.nix
··· 1 + { stdenv, 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"; 8 + 9 + meta = with stdenv.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 + }; 23 + }
+2
pkgs/top-level/all-packages.nix
··· 4684 4684 4685 4685 proot = callPackage ../tools/system/proot { }; 4686 4686 4687 + prototypejs = callPackage ../development/libraries/prototypejs { }; 4688 + 4687 4689 proxychains = callPackage ../tools/networking/proxychains { }; 4688 4690 4689 4691 proxytunnel = callPackage ../tools/misc/proxytunnel { };