3
0
Fork 0
forked from mirrors/nixpkgs

new: openjade, opensp - by Russell O'Connor

svn path=/nixpkgs/trunk/; revision=17926
This commit is contained in:
Marc Weber 2009-10-22 15:41:39 +00:00
parent 9252996ae7
commit 0d76da3b6f
3 changed files with 55 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{stdenv, fetchurl, opensp, perl}:
stdenv.mkDerivation {
# OpenJade-1.3.2 requires gcc 3.3 to build.
# The next release is likely to be compatible with newer gccs.
# If so the overrideGCC in top-level/all-packages should be removed.
name = "OpenJade-1.3.2";
src = fetchurl {
url = "http://prdownloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz";
sha256 = "1l92sfvx1f0wmkbvzv1385y1gb3hh010xksi1iyviyclrjb7jb8x";
};
buildInputs = [opensp perl];
configureFlags = [
"--enable-spincludedir=${opensp}/include/OpenSP"
"--enable-splibdir=${opensp}/lib"
];
meta = {
description = "An implementation of DSSSL, an ISO standard for formatting SGML (and XML) documents";
license = "BSD";
homepage = http://openjade.sourceforge.net/;
};
}

View file

@ -0,0 +1,19 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
# OpenSP-1.5.1 requires gcc 3.3 to build.
# The next release is likely to be compatible with newer gccs.
# If so the overrideGCC in top-level/all-packages should be removed.
name = "OpenSP-1.5.1";
src = fetchurl {
url = "http://prdownloads.sourceforge.net/openjade/OpenSP-1.5.1.tar.gz";
sha256 = "0svkgk85m6f848fi3nxnrkzg62422wxr739w5r1yrmn31n24j1iz";
};
meta = {
description = "A suite of SGML/XML processing tools";
license = "BSD";
homepage = http://openjade.sourceforge.net/;
};
}

View file

@ -1215,6 +1215,11 @@ let
inherit fetchurl stdenv pkgconfig openobex bluez;
};
openjade = import ../tools/text/sgml/openjade {
inherit fetchurl opensp perl;
stdenv = overrideGCC stdenv gcc33;
};
openobex = import ../tools/bluetooth/openobex {
inherit fetchurl stdenv pkgconfig bluez libusb;
};
@ -1225,6 +1230,11 @@ let
etcDir = getConfig [ "openssh" "etcDir" ] "/etc/ssh";
};
opensp = import ../tools/text/sgml/opensp {
inherit fetchurl;
stdenv = overrideGCC stdenv gcc33;
};
openvpn = import ../tools/networking/openvpn {
inherit fetchurl stdenv iproute lzo openssl nettools;
};