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