nixpkgs/pkgs/development/libraries/kde-frameworks/extra-cmake-modules/default.nix

21 lines
481 B
Nix
Raw Normal View History

{ stdenv, lib, copyPathsToStore, src, version, cmake }:
2016-04-21 17:32:21 +02:00
stdenv.mkDerivation {
name = "extra-cmake-modules-${version}";
inherit src;
2016-04-21 17:32:21 +02:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
outputs = [ "out" ]; # this package has no runtime components
nativeBuildInputs = [ cmake ];
2016-04-21 17:32:21 +02:00
meta = with lib; {
platforms = lib.platforms.linux;
homepage = "http://www.kde.org";
2016-04-21 17:32:21 +02:00
license = licenses.bsd2;
maintainers = [ maintainers.ttuegel ];
};
}