add poedit
This commit is contained in:
parent
f22a744945
commit
e67a2479e1
2 changed files with 22 additions and 0 deletions
20
pkgs/tools/text/poedit/default.nix
Normal file
20
pkgs/tools/text/poedit/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue