b815a9ea40
E.g., use { ..., marble, ... } : marble instead of { ..., kdeedu, ... } : kdeedu.marble svn path=/nixpkgs/trunk/; revision=28694
13 lines
312 B
Nix
13 lines
312 B
Nix
{ kde, qt4, cmake, phonon, qimageblitz, smokegen }:
|
|
|
|
kde {
|
|
propagatedBuildInputs = [ qt4 phonon qimageblitz ];
|
|
buildNativeInputs = [ cmake ];
|
|
propagatedBuildNativeInputs = [ smokegen ];
|
|
|
|
meta = {
|
|
description = "C++ parser used to generate language bindings for Qt/KDE";
|
|
license = "GPLv2";
|
|
};
|
|
}
|