nixpkgs/pkgs/applications/editors/focuswriter/default.nix

28 lines
817 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, qmake, qttools, hunspell, qtbase, qtmultimedia }:
2014-11-01 20:12:50 +00:00
stdenv.mkDerivation rec {
name = "focuswriter-${version}";
version = "1.7.3";
2014-11-01 20:12:50 +00:00
src = fetchurl {
url = "https://gottcode.org/focuswriter/focuswriter-${version}-src.tar.bz2";
sha256 = "155wf7z1g2yx6fb41w29kcb0m2rhnk9ci5yw882yy86s4x20b1jq";
2014-11-01 20:12:50 +00:00
};
nativeBuildInputs = [ pkgconfig qmake qttools ];
buildInputs = [ hunspell qtbase qtmultimedia ];
enableParallelBuilding = true;
2014-11-01 20:12:50 +00:00
qmakeFlags = [ "PREFIX=/" ];
2016-04-16 23:26:41 +00:00
installFlags = [ "INSTALL_ROOT=$(out)" ];
2014-11-01 20:12:50 +00:00
meta = with stdenv.lib; {
2014-11-01 20:12:50 +00:00
description = "Simple, distraction-free writing environment";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ madjar ];
2018-03-17 18:31:17 +00:00
platforms = platforms.linux;
homepage = https://gottcode.org/focuswriter/;
2014-11-01 20:12:50 +00:00
};
}