add poedit

+22
+20
pkgs/tools/text/poedit/default.nix
··· 1 + { stdenv, fetchurl, wxGTK29, boost }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "poedit-1.5.7"; 5 + 6 + src = fetchurl { 7 + url = "http://prdownloads.sourceforge.net/poedit/${name}.tar.gz"; 8 + sha256 = "0y0gbkb1jvp61qhh8sh7ar8849mwirizc42pk57zpxy84an5qlr4"; 9 + }; 10 + 11 + buildInputs = [ wxGTK29 boost ]; 12 + 13 + meta = with stdenv.lib; { 14 + description = "Cross-platform gettext catalogs (.po files) editor"; 15 + homepage = http://www.poedit.net/; 16 + license = licenses.mit; 17 + platforms = with platforms; unix; 18 + maintainers = with maintainers; [ iElectric ]; 19 + }; 20 + }
+2
pkgs/top-level/all-packages.nix
··· 1542 1542 1543 1543 podiff = callPackage ../tools/text/podiff { }; 1544 1544 1545 + poedit = callPackage ../tools/text/poedit { }; 1546 + 1545 1547 polipo = callPackage ../servers/polipo { }; 1546 1548 1547 1549 polkit_gnome = callPackage ../tools/security/polkit-gnome { };