-
-
Notifications
You must be signed in to change notification settings - Fork 15k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into staging.
- Loading branch information
Showing
172 changed files
with
2,333 additions
and
1,780 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,12 +5,12 @@ | |
alphabetically sorted. */ | ||
|
||
_1126 = "Christian Lask <[email protected]>"; | ||
abbradar = "Nikolay Amiantov <[email protected]>"; | ||
aforemny = "Alexander Foremny <[email protected]>"; | ||
ak = "Alexander Kjeldaas <[email protected]>"; | ||
akc = "Anders Claesson <[email protected]>"; | ||
algorith = "Dries Van Daele <[email protected]>"; | ||
all = "Nix Committers <[email protected]>"; | ||
abbradar = "Nikolay Amiantov <[email protected]>"; | ||
amiddelk = "Arie Middelkoop <[email protected]>"; | ||
amorsillo = "Andrew Morsillo <[email protected]>"; | ||
AndersonTorres = "Anderson Torres <[email protected]>"; | ||
|
@@ -46,8 +46,8 @@ | |
coroa = "Jonas Hörsch <[email protected]>"; | ||
cstrahan = "Charles Strahan <[email protected]>"; | ||
DamienCassou = "Damien Cassou <[email protected]>"; | ||
DerGuteMoritz = "Moritz Heidkamp <[email protected]>"; | ||
dbohdan = "Danyil Bohdan <[email protected]>"; | ||
DerGuteMoritz = "Moritz Heidkamp <[email protected]>"; | ||
dmalikov = "Dmitry Malikov <[email protected]>"; | ||
doublec = "Chris Double <[email protected]>"; | ||
ederoyd46 = "Matthew Brown <[email protected]>"; | ||
|
@@ -104,6 +104,7 @@ | |
offline = "Jaka Hudoklin <[email protected]>"; | ||
orbitz = "Malcolm Matalka <[email protected]>"; | ||
page = "Carles Pagès <[email protected]>"; | ||
pashev = "Igor Pashev <[email protected]>"; | ||
phreedom = "Evgeny Egorochkin <[email protected]>"; | ||
pierron = "Nicolas B. Pierron <[email protected]>"; | ||
piotr = "Piotr Pietraszkiewicz <[email protected]>"; | ||
|
@@ -139,8 +140,8 @@ | |
tomberek = "Thomas Bereknyei <[email protected]>"; | ||
tstrobel = "Thomas Strobel <[email protected]>"; | ||
ttuegel = "Thomas Tuegel <[email protected]>"; | ||
twey = "James ‘Twey’ Kay <[email protected]>"; | ||
tv = "Tomislav Viljetić <[email protected]>"; | ||
twey = "James ‘Twey’ Kay <[email protected]>"; | ||
urkud = "Yury G. Kudryashov <[email protected]>"; | ||
vandenoever = "Jos van den Oever <[email protected]>"; | ||
vbgl = "Vincent Laporte <[email protected]>"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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/"; | ||
}; | ||
} |
Oops, something went wrong.