2011-01-09 16:43:53 +01:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-02-24 17:20:47 +01:00
|
|
|
name = "jquery-ui-1.8.10";
|
2011-01-09 16:43:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://jqueryui.com/download/${name}.custom.zip";
|
2011-02-24 17:20:47 +01:00
|
|
|
sha256 = "0yglab9zmxr1il2rmxxd7gycpfaavgpi03h8nc5b2yx2kz80jlik";
|
2011-01-09 16:43:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
sourceRoot = ".";
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
mkdir -p $out
|
|
|
|
cp -prvd css js $out/
|
|
|
|
|
|
|
|
# For convenience, provide symlinks "jquery.min.js" etc. (i.e.,
|
|
|
|
# without the version number).
|
|
|
|
ln -s $out/js/jquery-ui-*.custom.min.js $out/js/jquery-ui.min.js
|
|
|
|
ln -s $out/js/jquery-1.*.min.js $out/js/jquery.min.js
|
|
|
|
ln -s $out/css/smoothness/jquery-ui-*.custom.css $out/css/smoothness/jquery-ui.css
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://jqueryui.com/;
|
|
|
|
description = "A library of JavaScript widgets and effects";
|
2011-02-24 17:20:47 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-01-09 16:43:53 +01:00
|
|
|
};
|
|
|
|
}
|