mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
* Add libkipi and libkexiv2.
svn path=/nixpkgs/branches/kde-4.7/; revision=27727
This commit is contained in:
parent
9bf61690e8
commit
8cb2e1860f
@ -35,6 +35,12 @@ recurseIntoAttrs rec {
|
||||
|
||||
soprano = callPackage ./support/soprano { };
|
||||
|
||||
libkexiv2 = callPackage ./libkexiv2.nix { };
|
||||
|
||||
libkipi = callPackage ./libkipi.nix { };
|
||||
|
||||
kipi_plugins = callPackage ./kipi-plugins { };
|
||||
|
||||
### LIBS
|
||||
kdelibs = callPackage ./libs { };
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
{ kde, cmake, qt4, kdelibs, automoc4, exiv2, soprano
|
||||
, shared_desktop_ontologies, kde_baseapps }:
|
||||
, shared_desktop_ontologies, kde_baseapps, libkipi }:
|
||||
|
||||
kde.package {
|
||||
|
||||
buildInputs =
|
||||
[ cmake qt4 kdelibs automoc4 exiv2 soprano shared_desktop_ontologies
|
||||
kde_baseapps
|
||||
kde_baseapps libkipi
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
12
pkgs/desktops/kde-4.7/libkexiv2.nix
Normal file
12
pkgs/desktops/kde-4.7/libkexiv2.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ automoc4, cmake, kde, kdelibs, qt4, exiv2 }:
|
||||
|
||||
kde.package {
|
||||
|
||||
buildInputs = [ cmake kdelibs qt4 automoc4 exiv2 ];
|
||||
|
||||
meta = {
|
||||
description = "Exiv2 support library";
|
||||
license = "GPLv2";
|
||||
kde.name = "libkexiv2";
|
||||
};
|
||||
}
|
12
pkgs/desktops/kde-4.7/libkipi.nix
Normal file
12
pkgs/desktops/kde-4.7/libkipi.nix
Normal file
@ -0,0 +1,12 @@
|
||||
{ automoc4, cmake, kde, kdelibs, qt4 }:
|
||||
|
||||
kde.package {
|
||||
|
||||
buildInputs = [ cmake kdelibs qt4 automoc4 ];
|
||||
|
||||
meta = {
|
||||
description = "Interface library to kipi-plugins";
|
||||
license = "GPLv2";
|
||||
kde.name = "libkipi";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user