mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-08 05:54:24 +00:00
30d9dba60c
svn path=/nixpkgs/trunk/; revision=13293
13 lines
256 B
Nix
13 lines
256 B
Nix
args: with args;
|
|
|
|
stdenv.mkDerivation {
|
|
name = "kdegames-4.0.0";
|
|
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.0.0/src/kdegames-4.0.0.tar.bz2;
|
|
md5 = "6264c0034f6389a2807a4e1723ba1c81";
|
|
};
|
|
|
|
buildInputs = [kdelibs kdepimlibs kdeworkspace];
|
|
}
|