summary refs log tree commit diff
path: root/pkgs/tools/text/poedit/default.nix
blob: 10822f1809fbef81def71bdaa1b45fb4f825f326 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, wxGTK29, boost }:

stdenv.mkDerivation rec {
  name = "poedit-1.5.7";

  src = fetchurl {
    url = "http://prdownloads.sourceforge.net/poedit/${name}.tar.gz";
    sha256 = "0y0gbkb1jvp61qhh8sh7ar8849mwirizc42pk57zpxy84an5qlr4";
  };

  buildInputs = [ wxGTK29 boost ];

  meta = with stdenv.lib; {
    description = "Cross-platform gettext catalogs (.po files) editor";
    homepage = http://www.poedit.net/;
    license = licenses.mit;
    platforms = with platforms; unix;
    maintainers = with maintainers; [ iElectric ];
  };
}