dbea319399
svn path=/nixpkgs/trunk/; revision=10136
16 lines
355 B
Nix
16 lines
355 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdebase-workspace-4.0.0";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://download.kde.org/stable/4.0.0/src/kdebase-workspace-4.0.0.tar.bz2;
|
|
md5 = "f3d2155ff5ff7472a8884bd3f31bff16";
|
|
};
|
|
|
|
buildInputs = [kdelibs kdepimlibs kdebase kderuntime stdenv.gcc.libc];
|
|
inherit kdelibs;
|
|
}
|
|
|