1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Updated KDE toys to 4.3.1

svn path=/nixpkgs/trunk/; revision=17007
This commit is contained in:
Sander van der Burg 2009-09-10 13:13:48 +00:00
parent 51e0549398
commit 4e39d699c4
2 changed files with 11 additions and 5 deletions

View file

@ -156,7 +156,7 @@ rec {
};
kdetoys = import ./toys {
inherit (pkgs) stdenv fetchurl cmake qt4 perl;
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl;
inherit kdelibs kdebase_workspace;
inherit automoc4 phonon;
};

View file

@ -1,11 +1,17 @@
{stdenv, fetchurl, cmake, qt4, perl, kdelibs, kdebase_workspace, automoc4, phonon}:
{stdenv, fetchurl, lib, cmake, qt4, perl, kdelibs, kdebase_workspace, automoc4, phonon}:
stdenv.mkDerivation {
name = "kdetoys-4.2.4";
name = "kdetoys-4.3.1";
src = fetchurl {
url = mirror://kde/stable/4.2.4/src/kdetoys-4.2.4.tar.bz2;
sha1 = "3f05154f85d0a01ceb97854e31adff03a7b5fdda";
url = mirror://kde/stable/4.3.1/src/kdetoys-4.3.1.tar.bz2;
sha1 = "31a60deafef34a02fb7de5339eed1c750a456d3b";
};
includeAllQtDirs=true;
buildInputs = [ cmake qt4 perl kdelibs kdebase_workspace automoc4 phonon ];
meta = {
description = "KDE Games";
license = "GPL";
homepage = http://www.kde.org;
maintainers = [ lib.maintainers.sander ];
};
}