nixpkgs/pkgs/development/tools/build-managers/apache-ant/default.nix
Martin Bravenboer 007765937b These Ants just keep getting better\!. Also added prelim. version of PostgreSQL.
svn path=/nixpkgs/trunk/; revision=1326
2004-08-24 11:38:40 +00:00

17 lines
275 B
Nix

{stdenv, fetchurl, j2sdk, name}:
let {
body =
stdenv.mkDerivation {
name = name;
builder = ./builder.sh;
buildInputs = [ant j2sdk];
inherit ant j2sdk;
};
ant =
(import ./core-apache-ant.nix) {
inherit fetchurl stdenv;
};
}