focuswriter: added expression

+27
+25
pkgs/applications/editors/focuswriter/default.nix
··· 1 + {stdenv, fetchurl, qt4, pkgconfig, hunspell}: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "focuswriter-${version}"; 5 + version = "1.5.3"; 6 + 7 + src = fetchurl { 8 + url = http://gottcode.org/focuswriter/focuswriter-1.5.3-src.tar.bz2; 9 + sha256 = "1i58jxbiy95ijf81g8c3gwxhcg3irzssna3wv7vhrd57g4lcfj0w"; 10 + }; 11 + 12 + buildInputs = [ qt4 pkgconfig hunspell ]; 13 + 14 + configurePhase = "qmake PREFIX=/"; 15 + 16 + installPhase = "make install INSTALL_ROOT=$out"; 17 + 18 + meta = { 19 + description = "Simple, distraction-free writing environment"; 20 + license = stdenv.lib.licenses.gpl2; 21 + maintainers = [ stdenv.lib.maintainers.madjar ]; 22 + platforms = stdenv.lib.platforms.all; 23 + homepage = "http://gottcode.org/focuswriter/"; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 9319 9319 9320 9320 fluidsynth = callPackage ../applications/audio/fluidsynth { }; 9321 9321 9322 + focuswriter = callPackage ../applications/editors/focuswriter { }; 9323 + 9322 9324 fossil = callPackage ../applications/version-management/fossil { }; 9323 9325 9324 9326 freewheeling = callPackage ../applications/audio/freewheeling { };