6e8ff2b24b
svn path=/nixpkgs/branches/stdenv-updates/; revision=10155
14 lines
326 B
Nix
14 lines
326 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdebase-workspace-4.0.0";
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.0/src/kdebase-workspace-4.0.0.tar.bz2;
|
|
sha256 = "08sgp7jaqljdxwsgr5lyyfd6w734yv24zswps1mchmhj01vz1fcg";
|
|
};
|
|
|
|
buildInputs = [kdelibs kdepimlibs stdenv.gcc.libc];
|
|
}
|