mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
These Ants just keep getting better\!. Also added prelim. version of PostgreSQL.
svn path=/nixpkgs/trunk/; revision=1326
This commit is contained in:
parent
c70943c332
commit
007765937b
@ -1,6 +1,6 @@
|
||||
{stdenv, fetchurl, j2sdk, name}:
|
||||
|
||||
rec {
|
||||
let {
|
||||
body =
|
||||
stdenv.mkDerivation {
|
||||
name = name;
|
||||
|
8
pkgs/servers/sql/postgresql/builder.sh
Executable file
8
pkgs/servers/sql/postgresql/builder.sh
Executable file
@ -0,0 +1,8 @@
|
||||
. $stdenv/setup
|
||||
|
||||
configureFlags=""
|
||||
if test "$jdbcSupport"; then
|
||||
configureFlags="--with-java $configureFlags"
|
||||
fi
|
||||
|
||||
genericBuild
|
18
pkgs/servers/sql/postgresql/default.nix
Normal file
18
pkgs/servers/sql/postgresql/default.nix
Normal file
@ -0,0 +1,18 @@
|
||||
{stdenv, fetchurl, readline, jdbcSupport ? true, ant ? null}:
|
||||
|
||||
assert jdbcSupport -> ant != null;
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "postgresql-7.4.5";
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = ftp://ftp2.nl.postgresql.org/mirror/postgresql/latest/postgresql-7.4.5.tar.bz2;
|
||||
md5 = "97e750c8e69c208b75b6efedc5a36efb";
|
||||
};
|
||||
|
||||
inherit jdbcSupport;
|
||||
ant = if jdbcSupport then ant else null;
|
||||
|
||||
buildInputs = if jdbcSupport then [ant] else [];
|
||||
}
|
@ -325,7 +325,7 @@ rec {
|
||||
jclasslib = (import ../development/tools/java/jclasslib) {
|
||||
inherit fetchurl stdenv xpf;
|
||||
j2re = j2sdk15;
|
||||
ant = apacheant14.body;
|
||||
ant = apacheAnt14;
|
||||
};
|
||||
|
||||
ocaml = (import ../development/compilers/ocaml) {
|
||||
@ -405,18 +405,18 @@ rec {
|
||||
inherit fetchurl stdenv jikes alsaLib xlibs;
|
||||
};
|
||||
|
||||
apacheant14 = (import ../development/tools/build-managers/apache-ant) {
|
||||
apacheAnt14 = (import ../development/tools/build-managers/apache-ant) {
|
||||
inherit fetchurl stdenv j2sdk;
|
||||
name = "ant-j2sdk-1.4.2";
|
||||
};
|
||||
|
||||
apacheantblackdown14 = (import ../development/tools/build-managers/apache-ant) {
|
||||
apacheAntBlackdown14 = (import ../development/tools/build-managers/apache-ant) {
|
||||
inherit fetchurl stdenv;
|
||||
j2sdk = blackdown;
|
||||
name = "ant-blackdown-1.4.2";
|
||||
};
|
||||
|
||||
apacheant15 = (import ../development/tools/build-managers/apache-ant) {
|
||||
apacheAnt15 = (import ../development/tools/build-managers/apache-ant) {
|
||||
inherit fetchurl stdenv;
|
||||
name = "ant-j2sdk-1.5.0";
|
||||
j2sdk = j2sdk15;
|
||||
@ -631,6 +631,12 @@ rec {
|
||||
buildClientLibs = true;
|
||||
};
|
||||
|
||||
postgresql = (import ../servers/sql/postgresql) {
|
||||
inherit fetchurl stdenv readline;
|
||||
jdbcSupport = true;
|
||||
ant = apacheAntBlackdown14;
|
||||
};
|
||||
|
||||
### OS-SPECIFIC
|
||||
|
||||
kernelHeaders = (import ../os-specific/linux/kernel-headers) {
|
||||
|
Loading…
Reference in New Issue
Block a user