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:
parent
57a544d59c
commit
613ae5e387
@ -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;
|
||||
|
16
pkgs/desktops/kde-4.3/extragear/libkipi/default.nix
Normal file
16
pkgs/desktops/kde-4.3/extragear/libkipi/default.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user