add poedit

This commit is contained in:
Domen Kožar 2013-09-13 20:42:39 +02:00
parent f22a744945
commit e67a2479e1
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -1542,6 +1542,8 @@ let
podiff = callPackage ../tools/text/podiff { };
poedit = callPackage ../tools/text/poedit { };
polipo = callPackage ../servers/polipo { };
polkit_gnome = callPackage ../tools/security/polkit-gnome { };