Adding kdiff3 as extragear.
I don't know if 'extragear' involves a specific list of packages. (Thanks to Stephen for a patch) svn path=/nixpkgs/trunk/; revision=20634
This commit is contained in:
parent
f68b2277b7
commit
2ce4840754
2 changed files with 20 additions and 0 deletions
|
@ -237,6 +237,12 @@ pkgs.recurseIntoAttrs (rec {
|
|||
inherit automoc4 phonon;
|
||||
};
|
||||
|
||||
kdiff3 = import ./extragear/kdiff3 {
|
||||
inherit (pkgs) stdenv fetchurl cmake qt4 gettext perl;
|
||||
inherit kdelibs kdebase;
|
||||
inherit automoc4 phonon;
|
||||
};
|
||||
|
||||
kipiplugins = import ./extragear/kipi-plugins {
|
||||
inherit (pkgs) stdenv fetchurl lib cmake qt4 libxml2 libxslt gettext;
|
||||
inherit kdelibs kdepimlibs kdegraphics;
|
||||
|
|
14
pkgs/desktops/kde-4.4/extragear/kdiff3/default.nix
Normal file
14
pkgs/desktops/kde-4.4/extragear/kdiff3/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{ stdenv, fetchurl, cmake, qt4, perl, kdelibs, kdebase, automoc4, phonon, gettext}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kdiff3-0.9.95";
|
||||
src = fetchurl {
|
||||
url = http://downloads.sourceforge.net/project/kdiff3/kdiff3/0.9.95/kdiff3-0.9.95.tar.gz;
|
||||
sha256 = "0372cebc8957f256a98501a4ac3c3634c7ecffb486ece7e7819c90d876202f0f";
|
||||
};
|
||||
|
||||
cmakeFlags = [ "-DGETTEXT_INCLUDE_DIR=${gettext}/include" ];
|
||||
|
||||
# kdebase allows having a konqueror plugin built
|
||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon gettext kdebase ];
|
||||
}
|
Loading…
Reference in a new issue