2013-06-05 23:12:16 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, python, pygtk, gettext, texinfo
|
|
|
|
, ghostscript, pysqlite, librsvg, gdk_pixbuf, txt2man, timidity, mpg123
|
|
|
|
, alsaUtils, vorbisTools, csound, lilypond
|
|
|
|
, makeWrapper
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
solfege: update 3.22 -> 3.22.2 (latest stable)
Changes:
Solfege 3.22.2, October 6, 2013
* Updated Esperanto, Portugese and Turkish translations to the users manual
* Updated Spannish and Turkish messages
* distribute solfege/tests/lesson-files/*
* help/C/scales/modes.html are never translated. So we must link to the
C-locale file in every translation.
* gettext tweaks to make the test suite work both when run as "test.py" and
"test.py test_lessonfile". There is still something wrong because we have to
disable the test to run debuild
* distribute solfege/tests/lib/* and solfege/test/include/*
Solfege 3.22.1, September 16, 2013
* Adjust some of the short interval names used when selecting intervals to
practise: u->P1 4->P4, 5->P5, tt->TT, p11->P11, p12->P12, tt8->d12. Added long
name for intervals from Eleventh to Double Octave.
* Fix the bug where we could not select the Default profile
* Updated Esperanto, Spannish, Polish, Turkish, Vietnamese, Norwegian bokmål,
Brazilian Portugese and Vietnamese translations.
2013-11-24 13:23:50 +01:00
|
|
|
name = "solfege-3.22.2";
|
2013-06-05 23:12:16 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/solfege/${name}.tar.gz";
|
solfege: update 3.22 -> 3.22.2 (latest stable)
Changes:
Solfege 3.22.2, October 6, 2013
* Updated Esperanto, Portugese and Turkish translations to the users manual
* Updated Spannish and Turkish messages
* distribute solfege/tests/lesson-files/*
* help/C/scales/modes.html are never translated. So we must link to the
C-locale file in every translation.
* gettext tweaks to make the test suite work both when run as "test.py" and
"test.py test_lessonfile". There is still something wrong because we have to
disable the test to run debuild
* distribute solfege/tests/lib/* and solfege/test/include/*
Solfege 3.22.1, September 16, 2013
* Adjust some of the short interval names used when selecting intervals to
practise: u->P1 4->P4, 5->P5, tt->TT, p11->P11, p12->P12, tt8->d12. Added long
name for intervals from Eleventh to Double Octave.
* Fix the bug where we could not select the Default profile
* Updated Esperanto, Spannish, Polish, Turkish, Vietnamese, Norwegian bokmål,
Brazilian Portugese and Vietnamese translations.
2013-11-24 13:23:50 +01:00
|
|
|
sha256 = "1r4g93ka7i8jh5glii5nza0zq0wy4sw0gfzpvkcrhj9yr1h0jsp4";
|
2013-06-05 23:12:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig python pygtk gettext texinfo
|
|
|
|
ghostscript pysqlite librsvg gdk_pixbuf txt2man makeWrapper
|
|
|
|
];
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
sed -i -e 's|wav_player=.*|wav_player=${alsaUtils}/bin/aplay|' \
|
|
|
|
-e 's|midi_player=.*|midi_player=${timidity}/bin/timidity|' \
|
|
|
|
-e 's|mp3_player=.*|mp3_player=${mpg123}/bin/mpg123|' \
|
|
|
|
-e 's|ogg_player=.*|ogg_player=${vorbisTools}/bin/ogg123|' \
|
|
|
|
-e 's|csound=.*|csound=${csound}/bin/csound|' \
|
|
|
|
-e 's|lilypond-book=.*|lilypond-book=${lilypond}/bin/lilypond-book|' \
|
|
|
|
default.config
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
set -x
|
|
|
|
wrapProgram "$out/bin/solfege" \
|
|
|
|
--prefix PYTHONPATH ':' "$PYTHONPATH" \
|
2014-02-28 01:40:04 +01:00
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
2013-06-05 23:12:16 +02:00
|
|
|
'';
|
|
|
|
|
2013-11-24 13:27:24 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-06-05 23:12:16 +02:00
|
|
|
description = "Ear training program";
|
|
|
|
homepage = http://www.solfege.org/;
|
2013-11-24 13:27:24 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.bjornfor ];
|
2013-06-05 23:12:16 +02:00
|
|
|
};
|
|
|
|
}
|