1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

* Added kde-baseapps and Gwenview.

svn path=/nixpkgs/branches/kde-4.7/; revision=27726
This commit is contained in:
Eelco Dolstra 2011-07-11 15:33:41 +00:00
parent 4b02855065
commit 9bf61690e8
3 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{ automoc4, cmake, kde, kdelibs, qt4, strigi, soprano
, shared_desktop_ontologies, glib
}:
kde.package {
buildInputs =
[ cmake kdelibs qt4 automoc4 strigi soprano shared_desktop_ontologies
glib
];
meta = {
description = "Base KDE applications, including the Dolphin file manager and Konqueror web browser";
license = "GPLv2";
kde.name = "kde-baseapps";
};
}

View file

@ -47,8 +47,12 @@ recurseIntoAttrs rec {
kdebase_runtime = callPackage ./base-runtime { };
kde_baseapps = callPackage ./baseapps.nix { };
### OTHER MODULES
gwenview = callPackage ./gwenview.nix { };
okular = callPackage ./okular.nix { };
konsole = callPackage ./konsole.nix { };

View file

@ -0,0 +1,16 @@
{ kde, cmake, qt4, kdelibs, automoc4, exiv2, soprano
, shared_desktop_ontologies, kde_baseapps }:
kde.package {
buildInputs =
[ cmake qt4 kdelibs automoc4 exiv2 soprano shared_desktop_ontologies
kde_baseapps
];
meta = {
description = "Gwenview, the KDE image viewer";
license = "GPLv2";
kde.name = "gwenview";
};
}