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

39 lines
812 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, pkg-config
, cmake
, hunspell
, qtbase
, qtmultimedia
, qttools
, qt5compat
}:
stdenv.mkDerivation rec {
pname = "focuswriter";
version = "1.8.5";
src = fetchFromGitHub {
owner = "gottcode";
repo = "focuswriter";
rev = "v${version}";
hash = "sha256-6wvTlC/NCCcN2jpwqtoOsCln3ViY/vj7NpMsbYHBGiI=";
};
nativeBuildInputs = [ pkg-config cmake qttools ];
buildInputs = [ hunspell qtbase qtmultimedia qt5compat ];
dontWrapQtApps = true;
installFlags = [ "INSTALL_ROOT=$(out)" ];
meta = with lib; {
description = "Simple, distraction-free writing environment";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ madjar kashw2 ];
platforms = platforms.linux;
homepage = "https://gottcode.org/focuswriter/";
};
}