mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
focuswriter: 1.5.3 -> 1.6.7, Qt4 -> Qt5, GPLv2 -> GPLv3
This commit is contained in:
parent
5de2cffda0
commit
31ab1a35bf
|
@ -1,25 +1,27 @@
|
||||||
{ stdenv, fetchurl, qt4, qmake4Hook, pkgconfig, hunspell }:
|
{ stdenv, fetchurl, pkgconfig, qmake, qttools, hunspell, qtbase, qtmultimedia }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "focuswriter-${version}";
|
name = "focuswriter-${version}";
|
||||||
version = "1.5.3";
|
version = "1.6.7";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://gottcode.org/focuswriter/focuswriter-1.5.3-src.tar.bz2;
|
url = "https://gottcode.org/focuswriter/focuswriter-${version}-src.tar.bz2";
|
||||||
sha256 = "1i58jxbiy95ijf81g8c3gwxhcg3irzssna3wv7vhrd57g4lcfj0w";
|
sha256 = "10rqzinr6yd6ca06rklg34kdc08a3xgygfzmprsfg7gdsybfay5z";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ qt4 qmake4Hook pkgconfig hunspell ];
|
nativeBuildInputs = [ pkgconfig qmake qttools ];
|
||||||
|
buildInputs = [ hunspell qtbase qtmultimedia ];
|
||||||
qmakeFlags = [ "PREFIX=/" ];
|
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
qmakeFlags = [ "PREFIX=/" ];
|
||||||
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple, distraction-free writing environment";
|
description = "Simple, distraction-free writing environment";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = [ stdenv.lib.maintainers.madjar ];
|
maintainers = with maintainers; [ madjar ];
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
homepage = https://gottcode.org/focuswriter/;
|
homepage = https://gottcode.org/focuswriter/;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -14368,7 +14368,7 @@ with pkgs;
|
||||||
|
|
||||||
fmsynth = callPackage ../applications/audio/fmsynth { };
|
fmsynth = callPackage ../applications/audio/fmsynth { };
|
||||||
|
|
||||||
focuswriter = callPackage ../applications/editors/focuswriter { };
|
focuswriter = libsForQt5.callPackage ../applications/editors/focuswriter { };
|
||||||
|
|
||||||
font-manager = callPackage ../applications/misc/font-manager { };
|
font-manager = callPackage ../applications/misc/font-manager { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue