3
0
Fork 0
forked from mirrors/nixpkgs

kdeApps: move kdeApp to separate file

This commit is contained in:
Thomas Tuegel 2015-10-25 08:49:10 -05:00
parent cade7dfd77
commit 0f6ba0ee78
2 changed files with 27 additions and 19 deletions

View file

@ -21,25 +21,10 @@ let
srcs = import ./srcs.nix { inherit (pkgs) fetchurl; inherit mirror; };
mirror = "mirror://kde";
kdeApp = args:
let
inherit (args) name;
sname = args.sname or name;
inherit (srcs."${sname}") src version;
in stdenv.mkDerivation (args // {
name = "${name}-${version}";
inherit src;
cmakeFlags =
(args.cmakeFlags or [])
++ [ "-DBUILD_TESTING=OFF" ]
++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug";
meta = {
platforms = lib.platforms.linux;
homepage = "http://www.kde.org";
} // (args.meta or {});
});
kdeApp = import ./kde-app.nix {
inherit stdenv lib;
inherit debug srcs;
};
kdeLocale4 = name: args:
{ kdeApp, automoc4, cmake, gettext, kdelibs, perl }:

View file

@ -0,0 +1,23 @@
{ stdenv, lib, debug, srcs }:
args:
let
inherit (args) name;
sname = args.sname or name;
inherit (srcs."${sname}") src version;
in
stdenv.mkDerivation (args // {
name = "${name}-${version}";
inherit src;
cmakeFlags =
(args.cmakeFlags or [])
++ [ "-DBUILD_TESTING=OFF" ]
++ lib.optional debug "-DCMAKE_BUILD_TYPE=Debug";
meta = {
platforms = lib.platforms.linux;
homepage = "http://www.kde.org";
} // (args.meta or {});
})