forked from mirrors/nixpkgs
gwtdragdrop: remove
Upstream says it's unmaintained: https://github.com/fredsa/gwt-dnd
This commit is contained in:
parent
f57aa4795c
commit
017c4d207c
|
@ -1,27 +0,0 @@
|
|||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gwt-dnd";
|
||||
version = "2.6.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://gwt-dnd.googlecode.com/files/gwt-dnd-${version}.jar";
|
||||
sha256 = "07zdlr8afs499asnw0dcjmw1cnjc646v91lflx5dv4qj374c97fw";
|
||||
};
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/share/java
|
||||
cp $src $out/share/java/$name.jar
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
platforms = platforms.unix;
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
|
@ -398,6 +398,7 @@ mapAliases ({
|
|||
gupnp_igd = gupnp-igd; # added 2018-02-25
|
||||
gupnptools = gupnp-tools; # added 2015-12-19
|
||||
gutenberg = zola; # added 2018-11-17
|
||||
gwtdragdrop = throw "gwtdragdrop was removed: abandoned by upstream"; # # added 2022-02-06
|
||||
hawkthorne = throw "hawkthorne has been removed because it depended on a broken version of love"; # added 2022-01-15
|
||||
hal-flash = throw "hal-flash has been removed as Adobe Flash Player is now deprecated."; # added 2021-02-07
|
||||
heimdalFull = heimdal; # added 2018-05-01
|
||||
|
|
|
@ -20809,8 +20809,6 @@ with pkgs;
|
|||
|
||||
httpunit = callPackage ../development/libraries/java/httpunit { };
|
||||
|
||||
gwtdragdrop = callPackage ../development/libraries/java/gwt-dragdrop { };
|
||||
|
||||
gwtwidgets = callPackage ../development/libraries/java/gwt-widgets { };
|
||||
|
||||
javaCup = callPackage ../development/libraries/java/cup {
|
||||
|
|
Loading…
Reference in a new issue