mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-12 08:01:50 +00:00
Remove unused files
This commit is contained in:
parent
3116788c9b
commit
0ffc85d64b
nixos/lib
|
@ -10,11 +10,7 @@
|
||||||
with import ./build-vms.nix { inherit system pkgs minimal extraConfigurations; };
|
with import ./build-vms.nix { inherit system pkgs minimal extraConfigurations; };
|
||||||
with pkgs;
|
with pkgs;
|
||||||
|
|
||||||
let
|
rec {
|
||||||
jquery-ui = callPackage ./testing/jquery-ui.nix { };
|
|
||||||
jquery = callPackage ./testing/jquery.nix { };
|
|
||||||
|
|
||||||
in rec {
|
|
||||||
|
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
|
|
|
@ -10,11 +10,7 @@
|
||||||
with import ./build-vms.nix { inherit system pkgs minimal extraConfigurations; };
|
with import ./build-vms.nix { inherit system pkgs minimal extraConfigurations; };
|
||||||
with pkgs;
|
with pkgs;
|
||||||
|
|
||||||
let
|
rec {
|
||||||
jquery-ui = callPackage ./testing/jquery-ui.nix { };
|
|
||||||
jquery = callPackage ./testing/jquery.nix { };
|
|
||||||
|
|
||||||
in rec {
|
|
||||||
|
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
|
||||||
|
|
|
@ -1,24 +0,0 @@
|
||||||
{ stdenv, fetchurl, unzip }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "jquery-ui-1.11.4";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://jqueryui.com/resources/download/${name}.zip";
|
|
||||||
sha256 = "0ciyaj1acg08g8hpzqx6whayq206fvf4whksz2pjgxlv207lqgjh";
|
|
||||||
};
|
|
||||||
|
|
||||||
buildInputs = [ unzip ];
|
|
||||||
|
|
||||||
installPhase =
|
|
||||||
''
|
|
||||||
mkdir -p "$out/js"
|
|
||||||
cp -rv . "$out/js"
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = "https://jqueryui.com/";
|
|
||||||
description = "A library of JavaScript widgets and effects";
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,36 +0,0 @@
|
||||||
{ stdenv, fetchurl, compressed ? true }:
|
|
||||||
|
|
||||||
with stdenv.lib;
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "jquery-1.11.3";
|
|
||||||
|
|
||||||
src = if compressed then
|
|
||||||
fetchurl {
|
|
||||||
url = "http://code.jquery.com/${name}.min.js";
|
|
||||||
sha256 = "1f4glgxxn3jnvry3dpzmazj3207baacnap5w20gr2xlk789idfgc";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
fetchurl {
|
|
||||||
url = "http://code.jquery.com/${name}.js";
|
|
||||||
sha256 = "1v956yf5spw0156rni5z77hzqwmby7ajwdcd6mkhb6zvl36awr90";
|
|
||||||
};
|
|
||||||
|
|
||||||
dontUnpack = true;
|
|
||||||
|
|
||||||
installPhase =
|
|
||||||
''
|
|
||||||
mkdir -p "$out/js"
|
|
||||||
cp -v "$src" "$out/js/jquery.js"
|
|
||||||
${optionalString compressed ''
|
|
||||||
(cd "$out/js" && ln -s jquery.js jquery.min.js)
|
|
||||||
''}
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "JavaScript library designed to simplify the client-side scripting of HTML";
|
|
||||||
homepage = "http://jquery.com/";
|
|
||||||
license = licenses.mit;
|
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue