about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2019-05-14 22:26:33 +0200
committerc0bw3b <c0bw3b@users.noreply.github.com>2019-05-15 20:30:48 +0200
commit582fd549fb2d1e31134ce76e1e1f1c9b7cac5725 (patch)
tree5e6c4cad640b6966f8df0c81eb7f1a63858b684f /pkgs/servers
parentf9e482e489793237aca6382cb0a45492fac36694 (diff)
downloadnixlib-582fd549fb2d1e31134ce76e1e1f1c9b7cac5725.tar
nixlib-582fd549fb2d1e31134ce76e1e1f1c9b7cac5725.tar.gz
nixlib-582fd549fb2d1e31134ce76e1e1f1c9b7cac5725.tar.bz2
nixlib-582fd549fb2d1e31134ce76e1e1f1c9b7cac5725.tar.lz
nixlib-582fd549fb2d1e31134ce76e1e1f1c9b7cac5725.tar.xz
nixlib-582fd549fb2d1e31134ce76e1e1f1c9b7cac5725.tar.zst
nixlib-582fd549fb2d1e31134ce76e1e1f1c9b7cac5725.zip
winstone: drop package and service
Close #56294
Upstream package is unmaintained for years
and nixpkgs provides alternatives
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/http/winstone/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/servers/http/winstone/default.nix b/pkgs/servers/http/winstone/default.nix
deleted file mode 100644
index 6a92c0a228af..000000000000
--- a/pkgs/servers/http/winstone/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  name = "winstone-${version}";
-  version = "0.9.10";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/winstone/${name}.jar";
-    sha256 = "17xvq3yk95335c6ag1bmbmxlvh7gqq35ifi64r2l6rnvrf6pqyan";
-  };
-
-  phases = [ "installPhase" ];
-
-  installPhase = ''
-    mkdir -p $out/lib
-    cp $src $out/lib/winstone.jar
-  '';
-
-  meta = {
-    homepage = http://winstone.sourceforge.net/;
-    description = "A simple Java Servlet container";
-    license = stdenv.lib.licenses.cddl;
-    platforms = stdenv.lib.platforms.all;
-    maintainers = [ stdenv.lib.maintainers.rickynils ];
-  };
-}