at v192 20 lines 554 B view raw
1{ stdenv, fetchurl, wxGTK29, boost }: 2 3stdenv.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}