2011-01-09 16:43:53 +01:00
|
|
|
{ stdenv, fetchurl, unzip }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-10-04 17:57:42 +02:00
|
|
|
name = "jquery-ui-1.11.4";
|
2011-01-09 16:43:53 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-07 13:36:13 +02:00
|
|
|
url = "http://jqueryui.com/resources/download/${name}.zip";
|
2015-10-04 17:57:42 +02:00
|
|
|
sha256 = "0ciyaj1acg08g8hpzqx6whayq206fvf4whksz2pjgxlv207lqgjh";
|
2011-01-09 16:43:53 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
2014-09-07 13:36:13 +02:00
|
|
|
mkdir -p "$out/js"
|
|
|
|
cp -rv . "$out/js"
|
2011-01-09 16:43:53 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|