tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
focuswriter: added expression
Georges Dubus
11 years ago
5258211e
f12ef693
+27
2 changed files
expand all
collapse all
unified
split
pkgs
applications
editors
focuswriter
default.nix
top-level
all-packages.nix
+25
pkgs/applications/editors/focuswriter/default.nix
···
1
1
+
{stdenv, fetchurl, qt4, pkgconfig, hunspell}:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
name = "focuswriter-${version}";
5
5
+
version = "1.5.3";
6
6
+
7
7
+
src = fetchurl {
8
8
+
url = http://gottcode.org/focuswriter/focuswriter-1.5.3-src.tar.bz2;
9
9
+
sha256 = "1i58jxbiy95ijf81g8c3gwxhcg3irzssna3wv7vhrd57g4lcfj0w";
10
10
+
};
11
11
+
12
12
+
buildInputs = [ qt4 pkgconfig hunspell ];
13
13
+
14
14
+
configurePhase = "qmake PREFIX=/";
15
15
+
16
16
+
installPhase = "make install INSTALL_ROOT=$out";
17
17
+
18
18
+
meta = {
19
19
+
description = "Simple, distraction-free writing environment";
20
20
+
license = stdenv.lib.licenses.gpl2;
21
21
+
maintainers = [ stdenv.lib.maintainers.madjar ];
22
22
+
platforms = stdenv.lib.platforms.all;
23
23
+
homepage = "http://gottcode.org/focuswriter/";
24
24
+
};
25
25
+
}
+2
pkgs/top-level/all-packages.nix
···
9319
9319
9320
9320
fluidsynth = callPackage ../applications/audio/fluidsynth { };
9321
9321
9322
9322
+
focuswriter = callPackage ../applications/editors/focuswriter { };
9323
9323
+
9322
9324
fossil = callPackage ../applications/version-management/fossil { };
9323
9325
9324
9326
freewheeling = callPackage ../applications/audio/freewheeling { };