mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 05:00:16 +00:00
Cleaned up the top-level KDE 4.2 expression a bit
svn path=/nixpkgs/trunk/; revision=14100
This commit is contained in:
parent
da1904a231
commit
690d8bb443
|
@ -29,10 +29,13 @@ rec {
|
|||
};
|
||||
|
||||
### LIBS
|
||||
kdelibs = import ./libs (pkgs // {
|
||||
kdelibs = import ./libs {
|
||||
inherit (pkgs) stdenv fetchurl cmake qt4 perl bzip2 pcre fam libxml2 libxslt;
|
||||
inherit (pkgs) giflib jasper openexr aspell avahi shared_mime_info;
|
||||
inherit automoc4 phonon strigi soprano;
|
||||
});
|
||||
|
||||
};
|
||||
|
||||
### BASE
|
||||
kdebase_workspace = import ./base-workspace {
|
||||
inherit (pkgs) stdenv fetchurl cmake qt4 perl python;
|
||||
inherit (pkgs) lm_sensors libxklavier libusb pthread_stubs;
|
||||
|
@ -53,4 +56,11 @@ rec {
|
|||
inherit kdelibs;
|
||||
inherit automoc4 phonon strigi soprano;
|
||||
};
|
||||
|
||||
### ADDITIONAL
|
||||
|
||||
kdegraphics = import ./graphics {
|
||||
inherit (pkgs) stdenv fetchurl cmake;
|
||||
inherit kdelibs;
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchurl, cmake, perl
|
||||
, qt4, bzip2, pcre, fam, libxml2, libxslt, shared_mime_info, giflib, jasper
|
||||
, openexr, aspell, avahi
|
||||
, automoc4, phonon, strigi, soprano, ...
|
||||
, automoc4, phonon, strigi, soprano
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
|
Loading…
Reference in a new issue