summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors/qxmledit
diff options
context:
space:
mode:
authorAleksey Uimanov <s9gf4ult@gmail.com>2020-03-22 20:01:49 +0500
committerAleksey Uimanov <s9gf4ult@gmail.com>2020-03-22 20:01:49 +0500
commita01e8b740e03ed5808ea8a59da8b13e62942bc66 (patch)
tree5f933cd04dc6381be1ca3d91dc184dcef4aa1431 /pkgs/applications/editors/qxmledit
parentce12576dd0ccbec911cc03d86da9728192c4ba84 (diff)
qxmledit: init at 0.9.15
Diffstat (limited to 'pkgs/applications/editors/qxmledit')
-rw-r--r--pkgs/applications/editors/qxmledit/default.nix28
-rw-r--r--pkgs/applications/editors/qxmledit/qxmledit.json6
2 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/editors/qxmledit/default.nix b/pkgs/applications/editors/qxmledit/default.nix
new file mode 100644
index 000000000000..131c015d1c15
--- /dev/null
+++ b/pkgs/applications/editors/qxmledit/default.nix
@@ -0,0 +1,28 @@
+{ stdenv, fetchFromGitHub,
+ qmake, qtbase, qtxmlpatterns, qtsvg, qtscxml, qtquick1, libGLU }:
+
+stdenv.mkDerivation rec {
+ name = "qxmledit-${version}" ;
+ version = "0.9.15" ;
+ src = fetchFromGitHub ( stdenv.lib.importJSON ./qxmledit.json ) ;
+ nativeBuildInputs = [ qmake ] ;
+ buildInputs = [ qtbase qtxmlpatterns qtsvg qtscxml qtquick1 libGLU ] ;
+ qmakeFlags = [ "CONFIG+=release" ] ;
+ outputs = [ "out" "doc" ] ;
+
+ preConfigure = ''
+export QXMLEDIT_INST_DATA_DIR="$out/share/data"
+export QXMLEDIT_INST_TRANSLATIONS_DIR="$out/share/i18n"
+export QXMLEDIT_INST_INCLUDE_DIR="$out/include"
+export QXMLEDIT_INST_DIR="$out/bin"
+export QXMLEDIT_INST_LIB_DIR="$out/lib"
+export QXMLEDIT_INST_DOC_DIR="$doc"
+'';
+
+ meta = with stdenv.lib; {
+ description = "Simple XML editor based on qt libraries" ;
+ homepage = https://sourceforge.net/projects/qxmledit;
+ license = licenses.lgpl2;
+ platforms = platforms.all;
+ } ;
+}
diff --git a/pkgs/applications/editors/qxmledit/qxmledit.json b/pkgs/applications/editors/qxmledit/qxmledit.json
new file mode 100644
index 000000000000..3b50532d6a0d
--- /dev/null
+++ b/pkgs/applications/editors/qxmledit/qxmledit.json
@@ -0,0 +1,6 @@
+{
+ "owner": "lbellonda",
+ "repo": "qxmledit",
+ "rev": "6136dca50ceb3b4447c91a7a18dcf84785ea11d1",
+ "sha256": "1wcnphalwf0a5gz9r44jgk8wcv1w2qipbwjkbzkra2kxanxns834"
+} \ No newline at end of file