at 18.09-beta 517 B view raw
1{ stdenv, fetchurl, unzip }: 2 3stdenv.mkDerivation rec { 4 name = "jquery-ui-1.11.4"; 5 6 src = fetchurl { 7 url = "http://jqueryui.com/resources/download/${name}.zip"; 8 sha256 = "0ciyaj1acg08g8hpzqx6whayq206fvf4whksz2pjgxlv207lqgjh"; 9 }; 10 11 buildInputs = [ unzip ]; 12 13 installPhase = 14 '' 15 mkdir -p "$out/js" 16 cp -rv . "$out/js" 17 ''; 18 19 meta = { 20 homepage = http://jqueryui.com/; 21 description = "A library of JavaScript widgets and effects"; 22 platforms = stdenv.lib.platforms.all; 23 }; 24}