summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/applications-15.12/kde-locale-4.nix
blob: e83794c60d818f946c77434b011671eb9abd7e11 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: args:

{ kdeApp, automoc4, cmake, gettext, kdelibs, perl }:

kdeApp (args // {
  sname = "kde-l10n-${name}";
  name = "kde-l10n-${name}-qt4";

  outputs = [ "out" ];

  nativeBuildInputs =
    [ automoc4 cmake gettext perl ]
    ++ (args.nativeBuildInputs or []);
  buildInputs =
    [ kdelibs ]
    ++ (args.buildInputs or []);

  preConfigure = ''
    sed -e 's/add_subdirectory(5)//' -i CMakeLists.txt
    ${args.preConfigure or ""}
  '';

  preFixup = ''
    propagatedBuildInputs=
    propagatedNativeBuildInputs=
  '';
})