nixpkgs/pkgs/desktops/kde-4.3/extragear/libkipi/default.nix
Lluís Batlle i Rossell 613ae5e387 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
2009-10-11 15:16:46 +00:00

17 lines
498 B
Nix

{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;
};
}