focuswriter: 1.5.3 -> 1.6.7, Qt4 -> Qt5, GPLv2 -> GPLv3

This commit is contained in:
Yegor Timoshenko 2017-10-01 01:50:29 +00:00
parent 5de2cffda0
commit 31ab1a35bf
2 changed files with 14 additions and 12 deletions

View File

@ -1,25 +1,27 @@
{ stdenv, fetchurl, qt4, qmake4Hook, pkgconfig, hunspell }:
{ stdenv, fetchurl, pkgconfig, qmake, qttools, hunspell, qtbase, qtmultimedia }:
stdenv.mkDerivation rec {
name = "focuswriter-${version}";
version = "1.5.3";
version = "1.6.7";
src = fetchurl {
url = http://gottcode.org/focuswriter/focuswriter-1.5.3-src.tar.bz2;
sha256 = "1i58jxbiy95ijf81g8c3gwxhcg3irzssna3wv7vhrd57g4lcfj0w";
url = "https://gottcode.org/focuswriter/focuswriter-${version}-src.tar.bz2";
sha256 = "10rqzinr6yd6ca06rklg34kdc08a3xgygfzmprsfg7gdsybfay5z";
};
buildInputs = [ qt4 qmake4Hook pkgconfig hunspell ];
qmakeFlags = [ "PREFIX=/" ];
nativeBuildInputs = [ pkgconfig qmake qttools ];
buildInputs = [ hunspell qtbase qtmultimedia ];
enableParallelBuilding = true;
qmakeFlags = [ "PREFIX=/" ];
installFlags = [ "INSTALL_ROOT=$(out)" ];
meta = {
meta = with stdenv.lib; {
description = "Simple, distraction-free writing environment";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.madjar ];
platforms = stdenv.lib.platforms.all;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ madjar ];
platforms = platforms.all;
homepage = https://gottcode.org/focuswriter/;
};
}

View File

@ -14368,7 +14368,7 @@ with pkgs;
fmsynth = callPackage ../applications/audio/fmsynth { };
focuswriter = callPackage ../applications/editors/focuswriter { };
focuswriter = libsForQt5.callPackage ../applications/editors/focuswriter { };
font-manager = callPackage ../applications/misc/font-manager { };