nixpkgs/pkgs/games/anki/default.nix

103 lines
3.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, substituteAll, lame, mplayer
, libpulseaudio, python, pyqt4, qt4, wrapPython
, pysqlite, sqlalchemy, pyaudio, beautifulsoup, httplib2, matplotlib
2013-01-04 03:48:47 +00:00
# This little flag adds a huge number of dependencies, but we assume that
# everyone wants Anki to draw plots with statistics by default.
, plotsSupport ? true
}:
2013-01-04 03:48:47 +00:00
let
2016-04-06 02:11:36 +00:00
version = "2.0.35";
2013-01-04 03:48:47 +00:00
in
stdenv.mkDerivation rec {
2014-02-08 18:17:18 +00:00
name = "anki-${version}";
2013-01-04 03:48:47 +00:00
src = fetchurl {
urls = [
"http://ankisrs.net/download/mirror/${name}.tgz"
"http://ankisrs.net/download/mirror/archive/${name}.tgz"
];
2016-04-06 02:11:36 +00:00
sha256 = "1d7k38xzw1nbg83d1aqxf2f76fv3hn2fry99k3vf4lgmhndj52mv";
2013-01-04 03:48:47 +00:00
};
pythonPath = [ pyqt4 pysqlite sqlalchemy pyaudio beautifulsoup httplib2 ]
++ lib.optional plotsSupport matplotlib;
2013-01-04 03:48:47 +00:00
buildInputs = [ python wrapPython lame mplayer libpulseaudio ];
2013-01-04 03:48:47 +00:00
phases = [ "unpackPhase" "patchPhase" "installPhase" ];
patches = [
2016-01-05 20:42:31 +00:00
# Disable updated version check.
./no-version-check.patch
(substituteAll {
src = ./fix-paths.patch;
inherit lame mplayer qt4;
qt4name = qt4.name;
})
];
2015-12-22 19:31:34 +00:00
postPatch = ''
substituteInPlace oldanki/lang.py --subst-var-by anki $out
substituteInPlace anki/lang.py --subst-var-by anki $out
2013-01-04 03:48:47 +00:00
# Remove unused starter. We'll create our own, minimalistic,
# starter.
rm anki/anki
2013-01-04 03:48:47 +00:00
# Remove QT translation files. We'll use the standard QT ones.
rm "locale/"*.qm
2013-01-04 03:48:47 +00:00
'';
installPhase = ''
pp=$out/lib/${python.libPrefix}/site-packages
2013-01-04 03:48:47 +00:00
mkdir -p $out/bin
mkdir -p $out/share/applications
mkdir -p $out/share/doc/anki
2013-01-04 03:48:47 +00:00
mkdir -p $out/share/man/man1
mkdir -p $out/share/mime/packages
mkdir -p $out/share/pixmaps
mkdir -p $pp
cat > $out/bin/anki <<EOF
#!${python}/bin/python
import aqt
aqt.run()
EOF
chmod 755 $out/bin/anki
cp -v anki.desktop $out/share/applications/
cp -v README* LICENSE* $out/share/doc/anki/
cp -v anki.1 $out/share/man/man1/
cp -v anki.xml $out/share/mime/packages/
cp -v anki.{png,xpm} $out/share/pixmaps/
cp -rv locale $out/share/
cp -rv anki aqt thirdparty/send2trash $pp/
2013-01-04 03:48:47 +00:00
wrapPythonPrograms
'';
meta = {
homepage = http://ankisrs.net/;
description = "Spaced repetition flashcard program";
2015-05-11 21:30:50 +00:00
license = stdenv.lib.licenses.gpl3;
2013-01-04 03:48:47 +00:00
longDescription = ''
Anki is a program which makes remembering things easy. Because it is a lot
more efficient than traditional study methods, you can either greatly
decrease your time spent studying, or greatly increase the amount you learn.
Anyone who needs to remember things in their daily life can benefit from
2014-02-08 18:17:18 +00:00
Anki. Since it is content-agnostic and supports images, audio, videos and
2013-01-04 03:48:47 +00:00
scientific markup (via LaTeX), the possibilities are endless. For example:
2015-05-11 21:30:50 +00:00
learning a language, studying for medical and law exams, memorizing
people's names and faces, brushing up on geography, mastering long poems,
or even practicing guitar chords!
2013-01-04 03:48:47 +00:00
'';
2015-05-11 21:30:50 +00:00
2013-12-09 00:16:42 +00:00
maintainers = with stdenv.lib.maintainers; [ the-kenny ];
2013-10-07 15:36:47 +00:00
platforms = stdenv.lib.platforms.mesaPlatforms;
2013-01-04 03:48:47 +00:00
};
}