2017-10-01 03:50:29 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, qmake, qttools, hunspell, qtbase, qtmultimedia }:
|
2014-11-01 21:12:50 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "focuswriter-${version}";
|
2017-10-01 03:50:29 +02:00
|
|
|
version = "1.6.7";
|
2014-11-01 21:12:50 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-10-01 03:50:29 +02:00
|
|
|
url = "https://gottcode.org/focuswriter/focuswriter-${version}-src.tar.bz2";
|
|
|
|
sha256 = "10rqzinr6yd6ca06rklg34kdc08a3xgygfzmprsfg7gdsybfay5z";
|
2014-11-01 21:12:50 +01:00
|
|
|
};
|
|
|
|
|
2017-10-01 03:50:29 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig qmake qttools ];
|
|
|
|
buildInputs = [ hunspell qtbase qtmultimedia ];
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2014-11-01 21:12:50 +01:00
|
|
|
|
2017-10-01 03:50:29 +02:00
|
|
|
qmakeFlags = [ "PREFIX=/" ];
|
2016-04-17 01:26:41 +02:00
|
|
|
installFlags = [ "INSTALL_ROOT=$(out)" ];
|
2014-11-01 21:12:50 +01:00
|
|
|
|
2017-10-01 03:50:29 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-11-01 21:12:50 +01:00
|
|
|
description = "Simple, distraction-free writing environment";
|
2017-10-01 03:50:29 +02:00
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
maintainers = with maintainers; [ madjar ];
|
|
|
|
platforms = platforms.all;
|
2017-08-02 23:50:51 +02:00
|
|
|
homepage = https://gottcode.org/focuswriter/;
|
2014-11-01 21:12:50 +01:00
|
|
|
};
|
|
|
|
}
|