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