forked from mirrors/nixpkgs
Added kdegames-4.2 package
svn path=/nixpkgs/trunk/; revision=14116
This commit is contained in:
parent
2d68e6a20e
commit
c8bdb1c684
|
@ -72,8 +72,15 @@ rec {
|
|||
};
|
||||
|
||||
kdemultimedia = import ./multimedia {
|
||||
inherit (pkgs) stdenv fetchurl cmake perl qt4 alsaLib xineLib libvorbis flac taglib cdparanoia;
|
||||
inherit (pkgs) stdenv fetchurl cmake perl qt4;
|
||||
inherit (pkgs) alsaLib xineLib libvorbis flac taglib cdparanoia;
|
||||
inherit kdelibs;
|
||||
inherit automoc4 phonon;
|
||||
};
|
||||
|
||||
kdegames = import ./games {
|
||||
inherit (pkgs) stdenv fetchurl cmake qt4 perl;
|
||||
inherit kdelibs;
|
||||
inherit automoc4 phonon qca2;
|
||||
};
|
||||
}
|
||||
|
|
10
pkgs/desktops/kde-4.2/games/default.nix
Normal file
10
pkgs/desktops/kde-4.2/games/default.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{stdenv, fetchurl, cmake, qt4, perl, kdelibs, automoc4, phonon, qca2}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "kdegames-4.2.0";
|
||||
src = fetchurl {
|
||||
url = mirror://kde/stable/4.2.0/src/kdegames-4.2.0.tar.bz2;
|
||||
md5 = "68cefd627025be99ba136e5a4e35e554";
|
||||
};
|
||||
buildInputs = [ cmake qt4 perl kdelibs automoc4 phonon qca2 ];
|
||||
}
|
Loading…
Reference in a new issue