From 5b220fb397f92311b3dab78e70307c57a693f08b Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 5 Sep 2007 13:56:12 +0000 Subject: * Some more attempts at getting OpenOffice (2.2.1) to build. It compiles now, but I haven't figure out how to do the equivalent of a "make install". But you can build with -K and then do $ cd /tmp/nix-.../OOF680_m18/instsetoo_native/util $ dmake openoffice_en-US PKGFORMAT=archive and you get a big tarball in /tmp/nix-.../OOF680_m18/instsetoo_native/unxlngi6.pro/OpenOffice/archive/install/en-US that you can unpack anywhere to get a more-or-less working OpenOffice. svn path=/nixpkgs/trunk/; revision=9257 --- pkgs/development/libraries/agg/default.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 pkgs/development/libraries/agg/default.nix (limited to 'pkgs/development/libraries/agg') diff --git a/pkgs/development/libraries/agg/default.nix b/pkgs/development/libraries/agg/default.nix new file mode 100644 index 000000000000..df8cfc5c04d3 --- /dev/null +++ b/pkgs/development/libraries/agg/default.nix @@ -0,0 +1,11 @@ +{stdenv, fetchurl, autoconf, automake, libtool, pkgconfig}: + +stdenv.mkDerivation { + name = "agg-2.5"; + src = fetchurl { + url = http://www.antigrain.com/agg-2.5.tar.gz; + sha256 = "07wii4i824vy9qsvjsgqxppgqmfdxq0xa87i5yk53fijriadq7mb" ; + }; + buildInputs = [autoconf automake libtool pkgconfig]; + preConfigure = "sh autogen.sh"; +} -- cgit 1.4.1