unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] Add MilkyTracker to Guix
@ 2016-03-25 23:54 kei
  2016-03-26 10:11 ` Nils Gillmann
                   ` (2 more replies)
  0 siblings, 3 replies; 15+ messages in thread
From: kei @ 2016-03-25 23:54 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 184 bytes --]

The attached is a patch to gnu/packages/music.scm that allows a minimal 
and functional build of MilkyTracker. I'm unsure if this is formatted 
correctly, but I'm willing to learn. :-)

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: music.scm.patch --]
[-- Type: text/x-diff; name=music.scm.patch, Size: 1582 bytes --]

--- music.scm.bak	2016-03-25 17:39:35.959715114 -0400
+++ music.scm	2016-03-25 19:39:44.754396091 -0400
@@ -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)
@@ -1305,3 +1306,26 @@
 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-"
+				  version
+				  ".tar.gz"))
+              (sha256
+               (base32
+                "0mqjkhvjyp5hnzm1ln3b2qjclviayxylcyml96pjdxgbaqcqa2zz"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:configure-flags `("--without-alsa" "--without-jack")))
+    (inputs
+     `(("sdl" ,sdl)
+       ("zlib" ,zlib)))
+    (synopsis "MilkyTracker is a free software 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)))

^ permalink raw reply	[flat|nested] 15+ messages in thread

end of thread, other threads:[~2016-03-30 20:52 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-03-25 23:54 [PATCH] Add MilkyTracker to Guix kei
2016-03-26 10:11 ` Nils Gillmann
2016-03-27  7:23 ` Efraim Flashner
2016-03-28  3:09   ` Kei Yamashita
2016-03-28 10:46     ` Alex Kost
2016-03-28 14:26       ` Ricardo Wurmus
2016-03-28 17:30         ` Kei Yamashita
2016-03-28 17:39           ` Kei Yamashita
2016-03-28 17:43             ` Kei Yamashita
2016-03-28 19:31               ` Kei Yamashita
2016-03-29  9:52               ` Alex Kost
2016-03-30  2:24                 ` Kei Yamashita
2016-03-30  2:36                   ` Leo Famulari
2016-03-30 20:52                   ` Alex Kost
2016-03-27 14:17 ` Nils Gillmann

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).