python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / scriptaculous / default.nix
blobe3c8ea00f446784280e520b5ad8629e572a168cb
1 { lib, stdenv, fetchurl, unzip, ... }:
3 stdenv.mkDerivation rec {
4   pname = "scriptaculous";
5   version = "1.9.0";
7   src = fetchurl {
8     url = "https://script.aculo.us/dist/scriptaculous-js-${version}.zip";
9     sha256 = "1xpnk3cq8n07lxd69k5jxh48s21zh41ihq10z4a6lcnk238rp8qz";
10   };
12   nativeBuildInputs = [ unzip ];
14   installPhase = ''
15     mkdir $out
16     cp src/*.js $out
17   '';
19   meta = with lib; {
20     description = "A set of JavaScript libraries to enhance the user interface of web sites";
21     longDescription = ''
22       script.aculo.us provides you with
23       easy-to-use, cross-browser user
24       interface JavaScript libraries to make
25       your web sites and web applications fly.
26     '';
27     homepage = "https://script.aculo.us/";
28     downloadPage = "https://script.aculo.us/dist/";
29     license = licenses.mit;
30     maintainers = with maintainers; [ das_j ];
31   };