freewheeling: cleanup

This commit is contained in:
Franz Pletz 2016-09-19 00:41:35 +02:00
parent 1234aaf47b
commit 01f8b65e48
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -3,17 +3,19 @@
, libSM, libsndfile, libogg , libSM, libsndfile, libogg
}: }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "freewheeling-100"; name = "freewheeling-${version}";
version = "100";
src = fetchsvn { src = fetchsvn {
url = svn://svn.code.sf.net/p/freewheeling/code; url = svn://svn.code.sf.net/p/freewheeling/code;
rev = 100; rev = version;
sha256 = "1m6z7p93xyha25qma9bazpzbp04pqdv5h3yrv6851775xsyvzksv"; sha256 = "1m6z7p93xyha25qma9bazpzbp04pqdv5h3yrv6851775xsyvzksv";
}; };
nativeBuildInputs = [ pkgconfig autoreconfHook ];
buildInputs = [ buildInputs = [
pkgconfig autoreconfHook gnutls33 freetype SDL SDL_gfx SDL_ttf gnutls33 freetype SDL SDL_gfx SDL_ttf
liblo libxml2 libjack2 alsaLib libvorbis libsndfile libogg libSM liblo libxml2 libjack2 alsaLib libvorbis libsndfile libogg libSM
]; ];
@ -35,7 +37,6 @@ stdenv.mkDerivation {
software, released under the GNU GPL license. software, released under the GNU GPL license.
'' ; '' ;
version = "r100";
homepage = "http://freewheeling.sourceforge.net"; homepage = "http://freewheeling.sourceforge.net";
license = stdenv.lib.licenses.gpl2; license = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.sepi ]; maintainers = [ stdenv.lib.maintainers.sepi ];