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:
parent
f12ef69336
commit
5258211e32
25
pkgs/applications/editors/focuswriter/default.nix
Normal file
25
pkgs/applications/editors/focuswriter/default.nix
Normal 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/";
|
||||||
|
};
|
||||||
|
}
|
|
@ -9319,6 +9319,8 @@ let
|
||||||
|
|
||||||
fluidsynth = callPackage ../applications/audio/fluidsynth { };
|
fluidsynth = callPackage ../applications/audio/fluidsynth { };
|
||||||
|
|
||||||
|
focuswriter = callPackage ../applications/editors/focuswriter { };
|
||||||
|
|
||||||
fossil = callPackage ../applications/version-management/fossil { };
|
fossil = callPackage ../applications/version-management/fossil { };
|
||||||
|
|
||||||
freewheeling = callPackage ../applications/audio/freewheeling { };
|
freewheeling = callPackage ../applications/audio/freewheeling { };
|
||||||
|
|
Loading…
Reference in a new issue