4017164a80
svn path=/nixpkgs/trunk/; revision=20885
27 lines
866 B
Nix
27 lines
866 B
Nix
{ stdenv, fetchurl, lib, cmake, qt4, perl, gmp, python, libzip, libarchive, xz
|
|
, sip, pyqt4, pycups, rhpl, system_config_printer
|
|
, kdelibs, kdepimlibs, kdebase, kdebindings, automoc4, phonon, qimageblitz, qca2}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdeutils-4.4.2";
|
|
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.4.2/src/kdeutils-4.4.2.tar.bz2;
|
|
sha256 = "13b8ygyaz61h1lq55fa2a4x88439rbaqqagw0syqqr9lmx63xc2j";
|
|
};
|
|
|
|
builder = ./builder.sh;
|
|
|
|
inherit system_config_printer;
|
|
|
|
buildInputs = [ cmake qt4 perl gmp python libzip libarchive xz sip pyqt4 pycups rhpl system_config_printer
|
|
kdelibs kdepimlibs kdebase kdebindings automoc4 phonon qimageblitz qca2 ];
|
|
|
|
meta = {
|
|
description = "KDE Utilities";
|
|
license = "GPL";
|
|
homepage = http://www.kde.org;
|
|
maintainers = [ lib.maintainers.sander ];
|
|
};
|
|
}
|