Files
nixpkgs/pkgs/by-name/sc/scriptaculous/package.nix
Janne Heß 5a6d0ee976 treewide: Drop a lot of my maintainership
I do not have the time or energy to handle all of this. Let alone my
GitHub notifications. This PR is in good faith and does not refer to
anything community-related. I will keep on doing nixpkgs work but the
pile of shame (let's call it that) needs to be cleaned. Thanks to
@mweinelt which whom I had a discussion and who made me aware of this
issue.
2026-08-12 16:24:54 +02:00

38 lines
868 B
Nix

{
lib,
stdenv,
fetchurl,
unzip,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "scriptaculous";
version = "1.9.0";
src = fetchurl {
url = "https://script.aculo.us/dist/scriptaculous-js-${finalAttrs.version}.zip";
sha256 = "1xpnk3cq8n07lxd69k5jxh48s21zh41ihq10z4a6lcnk238rp8qz";
};
nativeBuildInputs = [ unzip ];
installPhase = ''
mkdir $out
cp src/*.js $out
'';
meta = {
description = "Set of JavaScript libraries to enhance the user interface of web sites";
longDescription = ''
script.aculo.us provides you with
easy-to-use, cross-browser user
interface JavaScript libraries to make
your web sites and web applications fly.
'';
homepage = "https://script.aculo.us/";
downloadPage = "https://script.aculo.us/dist/";
license = lib.licenses.mit;
maintainers = [ ];
};
})