summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.5/webdev/kfilereplace.nix
blob: ab56a26878a30154210d27a4f29c3c28c299865e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ kde, cmake, kdelibs, automoc4, libxml2, libxslt }:

kde.package {
  buildInputs = [ cmake kdelibs automoc4 libxml2 libxslt ];

  meta = {
    description = "Batch search and replace tool";
    homepage = http://www.kdewebdev.org;
    kde = {
      name = "kfilereplace";
      module = "kdewebdev";
      version = "0.1";
      versionFile = "main.cpp";
    };
  };
}