From 749b8607ca3a6621d1aa37384c85e72369c64741 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 28 Jul 2010 15:35:01 +0000 Subject: * More cleanup. svn path=/nixpkgs/trunk/; revision=22795 --- pkgs/applications/misc/multisync/default.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'pkgs/applications/misc/multisync/default.nix') diff --git a/pkgs/applications/misc/multisync/default.nix b/pkgs/applications/misc/multisync/default.nix index af6bc072e53d..8fd043539698 100644 --- a/pkgs/applications/misc/multisync/default.nix +++ b/pkgs/applications/misc/multisync/default.nix @@ -1,15 +1,19 @@ -args: with args; - +{ stdenv, fetchurl, gtk, glib, ORBit2, libbonobo, libtool, pkgconfig +, libgnomeui, GConf, automake, autoconf }: stdenv.mkDerivation { name = "multisync-0.82-1"; + src = fetchurl { url = mirror://sourceforge/multisync/multisync-0.82-1.tar.bz2; sha256 = "1azb6zsn3n1rnla2qc3c440gc4vgmbj593k6xj5g1v0xha2vm2y3"; }; - buildInputs = [ gtk glib ORBit2 libbonobo libtool pkgconfig libgnomeui GConf - automake autoconf - ]; + + buildInputs = + [ gtk glib ORBit2 libbonobo libtool pkgconfig libgnomeui GConf + automake autoconf + ]; + preConfigure = "./autogen.sh"; # install.sh is not contained in the tar meta = { -- cgit 1.4.1