Unverified Commit 3e81474f authored by Daniel Nagy's avatar Daniel Nagy
Browse files

qxmledit: 0.9.15 -> 0.9.17

parent b1581c36
Loading
Loading
Loading
Loading
+23 −12
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub,
  qmake, qtbase, qtxmlpatterns, qtsvg, qtscxml, qtquick1, libGLU }:
{ lib, stdenv, fetchFromGitHub, qmake, qtbase, qtxmlpatterns, qtsvg, qtscxml
, qtquick1, libGLU }:

stdenv.mkDerivation rec {
  pname = "qxmledit";
  version = "0.9.15" ;
  src = fetchFromGitHub ( lib.importJSON ./qxmledit.json ) ;
  version = "0.9.17";

  outputs = [ "out" "doc" ];

  src = fetchFromGitHub {
    owner = "lbellonda";
    repo = pname;
    rev = version;
    hash = "sha256-UzN5U+aC/uKokSdeUG2zv8+mkaH4ndYZ0sfzkpQ3l1M=";
  };

  nativeBuildInputs = [ qmake ];

  buildInputs = [ qtbase qtxmlpatterns qtsvg qtscxml qtquick1 libGLU ];

  qmakeFlags = [ "CONFIG+=release" ];
  outputs = [ "out" "doc" ] ;

  preConfigure = ''
    export QXMLEDIT_INST_DATA_DIR="$out/share/data"
@@ -26,6 +36,7 @@ stdenv.mkDerivation rec {
    description = "Simple XML editor based on qt libraries";
    homepage = "https://sourceforge.net/projects/qxmledit";
    license = licenses.lgpl2;
    platforms = platforms.all;
    platforms = platforms.unix;
    changelog = "https://github.com/lbellonda/qxmledit/blob/${version}/NEWS";
  };
}
+0 −6
Original line number Diff line number Diff line
{
    "owner": "lbellonda",
    "repo": "qxmledit",
    "rev": "6136dca50ceb3b4447c91a7a18dcf84785ea11d1",
    "sha256": "1wcnphalwf0a5gz9r44jgk8wcv1w2qipbwjkbzkra2kxanxns834"
}