From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nils Gillmann Subject: Re: [PATCH] Add MilkyTracker to Guix Date: Sun, 27 Mar 2016 16:17:39 +0200 Message-ID: <87lh54uhrw.fsf@grrlz.net> References: <6dae35698781717e6043be7086b6f63c@openmailbox.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50064) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akBVw-00080P-EV for guix-devel@gnu.org; Sun, 27 Mar 2016 10:18:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1akBVs-00038p-0O for guix-devel@gnu.org; Sun, 27 Mar 2016 10:18:00 -0400 Received: from plane.gmane.org ([80.91.229.3]:50745) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1akBVr-00038k-PP for guix-devel@gnu.org; Sun, 27 Mar 2016 10:17:55 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1akBVp-0002o7-Hm for guix-devel@gnu.org; Sun, 27 Mar 2016 16:17:53 +0200 Received: from xd9bb9f4c.dyn.telefonica.de ([217.187.159.76]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 27 Mar 2016 16:17:53 +0200 Received: from niasterisk by xd9bb9f4c.dyn.telefonica.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 27 Mar 2016 16:17:53 +0200 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org --=-=-= Content-Type: text/plain Forwarded mail, from an offlist message by kei. Please CC the mailinglist next time or configure your email client to do so :) I think this is a bit better. I don't know how to run the tests required in the link you provided from within my local copy of the guix source code tree. (https://www.gnu.org/software/guix/manual/html_node/Submitting-Patches.html) --=-=-= Content-Type: text/x-patch; name=0002-Define-MilkyTracker-in-music.scm.patch Content-Disposition: attachment; filename=0002-Define-MilkyTracker-in-music.scm.patch >From 3f804b74cadc2c343b9592afdee6142d3d5bc131 Mon Sep 17 00:00:00 2001 From: Kei Yamashita Date: Sat, 26 Mar 2016 17:26:49 -0400 Subject: [PATCH 2/2] Define MilkyTracker in music.scm --- gnu/packages/music.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 672f55d..878603d 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -78,6 +78,7 @@ #:use-module (gnu packages rdf) #:use-module (gnu packages readline) #:use-module (gnu packages rsync) + #:use-module (gnu packages sdl) #:use-module (gnu packages tcl) #:use-module (gnu packages texinfo) #:use-module (gnu packages texlive) @@ -1304,3 +1305,26 @@ once and for all. It catalogs your collection, automatically improving its metadata as it goes using the MusicBrainz database. Then it provides a variety of tools for manipulating and accessing your music.") (license license:expat))) + +(define-public milkytracker + (package + (name "milkytracker") + (version "0.90.86") + (source (origin + (method url-fetch) + (uri + (string-append "http://milkytracker.org/files/milkytracker-" + name "-" version ".tar.gz")) + (sha256 + (base32 + "0mqjkhvjyp5hnzm1ln3b2qjclviayxylcyml96pjdxgbaqcqa2zz")))) + (build-system gnu-build-system) + (arguments + '(#:configure-flags `("--without-alsa" "--without-jack"))) + (inputs + `(("sdl" ,sdl) + ("zlib" ,zlib))) + (synopsis "Multi-platform music tracker for composing music in the MOD and XM module file formats") + (description "MilkyTracker is a free software, multi-platform music application for creating .MOD and .XM module files. It attempts to recreate the module replay and user experience of the popular DOS program Fasttracker II, with special playback modes available for improved Amiga ProTracker 2/3 compatibility.") + (home-page "http://milkytracker.org/") + (license license:gpl3))) -- 2.7.3 -- ng personal contact: http://krosos.sdf.org EDN: https://wiki.c3d2.de/EDN --=-=-=--