Trying to add kde43.libkipi. It still doesn't work, but the actual expression

triggers "nix-instantiate killed by signal 6 (SIGABRT)". Try it with:
nix-build -A kde43.libkipi /etc/nixos/nixpkgs

svn path=/nixpkgs/trunk/; revision=17745
This commit is contained in:
Lluís Batlle i Rossell 2009-10-11 15:16:46 +00:00
parent 57a544d59c
commit 613ae5e387
2 changed files with 22 additions and 0 deletions

View File

@ -217,6 +217,12 @@ pkgs.recurseIntoAttrs (rec {
inherit kdelibs;
inherit automoc4 phonon strigi soprano;
};
libkipi = import ./extragear/libkipi {
inherit (pkgs) stdenv fetchurl lib qt4 perl gettext;
inherit kdelibs;
inherit automoc4 phonon;
};
kdesvn = import ./extragear/kdesvn {
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl gettext apr aprutil subversion db4;

View File

@ -0,0 +1,16 @@
{stdenv, fetchurl, lib, qt4, perl, gettext, kdelibs, automoc4, phonon}:
stdenv.mkDerivation {
name = "libkipi-0.1.4";
src = fetchurl {
url = mirror://sourceforge/kipi/libkipi-0.1.4.tar.bz2;
sha256 = "1rj98rbgam8j0ndy0si5zfqqvqdlqlcgbzi6smq27d9micfy5yn8";
};
includeAllQtDirs=true;
buildInputs = [ qt4 perl gettext kdelibs automoc4 phonon ];
meta = {
description = "KDE Image Plugin Interface";
license = "GPL";
homepage = http://extragear.kde.org/apps/kipi;
};
}