1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

focuswriter: added expression

This commit is contained in:
Georges Dubus 2014-11-01 21:12:50 +01:00
parent f12ef69336
commit 5258211e32
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{stdenv, fetchurl, qt4, pkgconfig, hunspell}:
stdenv.mkDerivation rec {
name = "focuswriter-${version}";
version = "1.5.3";
src = fetchurl {
url = http://gottcode.org/focuswriter/focuswriter-1.5.3-src.tar.bz2;
sha256 = "1i58jxbiy95ijf81g8c3gwxhcg3irzssna3wv7vhrd57g4lcfj0w";
};
buildInputs = [ qt4 pkgconfig hunspell ];
configurePhase = "qmake PREFIX=/";
installPhase = "make install INSTALL_ROOT=$out";
meta = {
description = "Simple, distraction-free writing environment";
license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.madjar ];
platforms = stdenv.lib.platforms.all;
homepage = "http://gottcode.org/focuswriter/";
};
}

View file

@ -9319,6 +9319,8 @@ let
fluidsynth = callPackage ../applications/audio/fluidsynth { };
focuswriter = callPackage ../applications/editors/focuswriter { };
fossil = callPackage ../applications/version-management/fossil { };
freewheeling = callPackage ../applications/audio/freewheeling { };