0b259893e5
svn path=/nixpkgs/trunk/; revision=15484
11 lines
355 B
Nix
11 lines
355 B
Nix
{stdenv, fetchurl, cmake, qt4, perl, kdelibs, kdebase_workspace, automoc4, phonon}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdetoys-4.2.3";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.2.3/src/kdetoys-4.2.3.tar.bz2;
|
|
sha1 = "cb84d7b8da85ed82972a4c99065644532cf12d6d";
|
|
};
|
|
buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon ];
|
|
}
|