emacs-packages: Remove emms from old emacs package infrastructure

This commit is contained in:
adisbladis 2019-08-18 17:02:37 +01:00
parent ff92c81d90
commit ffd0fb4c8e
No known key found for this signature in database
GPG Key ID: 110BFAD44C6249B7

View File

@ -1,73 +0,0 @@
{ stdenv, fetchurl, emacs, texinfo
, mpg321, vorbis-tools, taglib, mp3info, alsaUtils }:
# XXX: EMMS also supports Xine, MPlayer, Jack, etc.
stdenv.mkDerivation rec {
name = "emms-3.0";
src = fetchurl {
# These guys don't use ftp.gnu.org...
url = "https://www.gnu.org/software/emms/download/${name}.tar.gz";
sha256 = "151mfx97x15lfpd1qc2sqbvhwhvg46axgh15qyqmdy42vh906xav";
};
buildInputs = [ emacs texinfo ];
configurePhase = ''
sed -i "Makefile" -e "s|PREFIX *=.*\$|PREFIX = $out|g ;
s|/usr/sbin/install-info|install-info|g ;
s|/usr/include/taglib|${taglib}/include/taglib|g ;
s|/usr/lib|${taglib}/lib|g ;
s|^all:\(.*\)\$|all:\1 emms-print-metadata|g"
mkdir -p "$out/share/man/man1"
sed -i "emms-player-mpg321-remote.el" \
-e 's|emms-player-mpg321-remote-command[[:blank:]]\+"mpg321"|emms-player-mpg321-remote-command "${mpg321}/bin/mpg321"|g'
sed -i "emms-player-simple.el" \
-e 's|"ogg123"|"${vorbis-tools}/bin/ogg123"|g'
sed -i "emms-info-ogginfo.el" \
-e 's|emms-info-ogginfo-program-name[[:blank:]]\+"ogginfo"|emms-info-ogginfo-program-name "${vorbis-tools}/bin/ogginfo"|g'
sed -i "emms-info-libtag.el" \
-e "s|\"emms-print-metadata\"|\"$out/bin/emms-print-metadata\"|g"
sed -i "emms-volume-amixer.el" \
-e 's|"amixer"|"${alsaUtils}/bin/amixer"|g'
# Use the libtag info back-end for MP3s since we're building it.
sed -i "emms-setup.el" \
-e 's|emms-info-mp3info|emms-info-libtag|g'
# But use mp3info for the tag editor.
sed -i "emms-info-mp3info.el" \
-e 's|emms-info-mp3info-program-name[[:blank:]]\+"mp3info"|emms-info-mp3info-program-name "${mp3info}/bin/mp3info"|g'
sed -i "emms-tag-editor.el" \
-e 's|"mp3info"|"${mp3info}/bin/mp3info"|g'
'';
postInstall = ''
mkdir -p "$out/bin" && cp emms-print-metadata "$out/bin"
'';
meta = {
description = "GNU EMMS, The Emacs Multimedia System";
longDescription = ''
EMMS is the Emacs Multimedia System. It tries to be a clean and
small application to play multimedia files from Emacs using
external players. Many of it's ideas are derived from
MpthreePlayer, but it tries to be more general and cleaner.
The fact that EMMS is based on external players makes it
powerful, because it supports all formats that those players
support, with no effort from your side.
'';
homepage = https://www.gnu.org/software/emms/;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = [ ];
platforms = stdenv.lib.platforms.unix;
broken = true;
};
}