Skip to content

Commit e281e59

Browse files
committedMay 11, 2017
eclipse-plugin-autodetect-encoding: init at 1.8.3
1 parent 18bad38 commit e281e59

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed
 

‎pkgs/applications/editors/eclipse/plugins.nix

+23
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,29 @@ rec {
127127
};
128128
};
129129

130+
autodetect-encoding = buildEclipsePlugin rec {
131+
name = "autodetect-encoding-${version}";
132+
version = "1.8.3.201610171338";
133+
134+
srcFeature = fetchurl {
135+
url = "https://cypher256.github.io/eclipse-encoding-plugin/features/eclipse.encoding.plugin.feature_${version}.jar";
136+
sha256 = "09xfn5j6vr9r7n0riqs5ja5ms98ax9pyi3f7irnv80flhzagdv7f";
137+
};
138+
139+
srcPlugin = fetchurl {
140+
url = "https://cypher256.github.io/eclipse-encoding-plugin/plugins/mergedoc.encoding_${version}.jar";
141+
sha256 = "0l2zw4whx1a7j0jl7i6n6igr2ki6jh6nwggx53n3ipzg7cgdcg0y";
142+
};
143+
144+
meta = with stdenv.lib; {
145+
homepage = https://github.com/cypher256/eclipse-encoding-plugin;
146+
description = "Show file encoding and line ending for the active editor in the eclipse status bar";
147+
license = licenses.epl10;
148+
platforms = platforms.all;
149+
maintainers = [ maintainers.rycee ];
150+
};
151+
};
152+
130153
bytecode-outline = buildEclipsePlugin rec {
131154
name = "bytecode-outline-${version}";
132155
version = "2.4.3";

0 commit comments

Comments
 (0)
Please sign in to comment.