ant: rip out ant-contrib (#359137)

authored by pyrox.dev and committed by GitHub 8d1beb88 d3030a96

+2 -9
+2
nixos/doc/manual/release-notes/rl-2511.section.md
··· 278 278 - `libvirt` now supports using `nftables` backend. 279 279 - The `virtualisation.libvirtd.firewallBackend` option can be used to configure the firewall backend used by libvirtd. 280 280 281 + - The third-party `ant-contrib` is no longer included in the `ant` package. 282 + 281 283 - `systemd.extraConfig` and `boot.initrd.systemd.extraConfig` was converted to RFC42-style `systemd.settings.Manager` and `boot.initrd.systemd.settings.Manager` respectively. 282 284 - `systemd.watchdog.runtimeTime` was renamed to `systemd.settings.Manager.RuntimeWatchdogSec` 283 285 - `systemd.watchdog.device` was renamed to `systemd.settings.Manager.WatchdogDevice`
-9
pkgs/by-name/an/ant/package.nix
··· 18 18 hash = "sha256-h/SNGLoRwRVojDfvl1g+xv+J6mAz+J2BimckjaRxDEs="; 19 19 }; 20 20 21 - contrib = fetchurl { 22 - url = "mirror://sourceforge/ant-contrib/ant-contrib-1.0b3-bin.tar.bz2"; 23 - sha256 = "1l8say86bz9gxp4yy777z7nm4j6m905pg342li1aphc14p5grvwn"; 24 - }; 25 - 26 21 installPhase = '' 27 22 mkdir -p $out/bin $out/share/ant 28 23 mv * $out/share/ant/ ··· 36 31 rm -rf $out/share/ant/{manual,bin,WHATSNEW} 37 32 mkdir $out/share/ant/bin 38 33 mv $out/bin/antRun $out/share/ant/bin/ 39 - 40 - # Install ant-contrib. 41 - unpackFile $contrib 42 - cp -p ant-contrib/ant-contrib-*.jar $out/share/ant/lib/ 43 34 44 35 cat >> $out/bin/ant <<EOF 45 36 #! ${stdenv.shell} -e