tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
add poedit
Domen Kožar
12 years ago
e67a2479
f22a7449
+22
2 changed files
expand all
collapse all
unified
split
pkgs
tools
text
poedit
default.nix
top-level
all-packages.nix
+20
pkgs/tools/text/poedit/default.nix
···
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
···
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
1543
podiff = callPackage ../tools/text/podiff { };
1544
0
0
1545
polipo = callPackage ../servers/polipo { };
1546
1547
polkit_gnome = callPackage ../tools/security/polkit-gnome { };
···
1542
1543
podiff = callPackage ../tools/text/podiff { };
1544
1545
+
poedit = callPackage ../tools/text/poedit { };
1546
+
1547
polipo = callPackage ../servers/polipo { };
1548
1549
polkit_gnome = callPackage ../tools/security/polkit-gnome { };