9fee9c7be4
eventually, but it seems to contain some packages that aren't in kde-4.2 yet). svn path=/nixpkgs/trunk/; revision=14481
16 lines
328 B
Nix
16 lines
328 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdebase-runtime-4.0.0";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.0.0/src/kdebase-runtime-4.0.0.tar.bz2;
|
|
md5 = "da93f59497ff90ad01bd4ab9b458f6cb";
|
|
};
|
|
|
|
propagatedBuildInputs = [kdepimlibs libusb kdebase xineLib];
|
|
inherit kdelibs;
|
|
}
|
|
|