2011-08-07 03:45:26 +02:00
|
|
|
{ stdenv, fetchurl, cmake, qt4, perl, kdelibs, automoc4, phonon, gettext, kde_baseapps }:
|
2010-03-15 15:26:58 +01:00
|
|
|
|
2010-10-20 13:59:06 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2010-03-15 15:26:58 +01:00
|
|
|
name = "kdiff3-0.9.95";
|
|
|
|
src = fetchurl {
|
2010-10-20 13:59:06 +02:00
|
|
|
url = "mirror://sourceforge/kdiff3/${name}.tar.gz";
|
|
|
|
sha256 = "03rg41vdi44wh7kygv46nkzyrirl6qyar901hnlmdwjpi6ycwwh3";
|
2010-03-15 15:26:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# kdebase allows having a konqueror plugin built
|
2011-08-07 03:45:26 +02:00
|
|
|
buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon gettext kde_baseapps ];
|
2010-04-29 23:31:35 +02:00
|
|
|
|
2010-10-20 13:59:13 +02:00
|
|
|
# Adjust the version of the DocBook XML to 4.2 ( so that it validates ).
|
|
|
|
patches = [ ./adjust-docbook-xml-version-to-4.2.patch ];
|
|
|
|
|
2010-04-29 23:31:35 +02:00
|
|
|
meta = {
|
|
|
|
homepage = http://kdiff3.sourceforge.net/;
|
|
|
|
license = "GPLv2+";
|
|
|
|
description = "Compares and merges 2 or 3 files or directories";
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
};
|
2010-03-15 15:26:58 +01:00
|
|
|
}
|