Add mimms, an mms (e.g. mms://) stream downloader

This commit is contained in:
Brian McKenna 2014-12-11 19:21:01 -07:00
parent 0d01793870
commit a20ffe7f0f
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ fetchurl, stdenv, pythonPackages, libmms }:
let version = "3.2";
in
pythonPackages.buildPythonPackage {
name = "mimms-${version}";
src = fetchurl {
url = "http://download.savannah.gnu.org/releases/mimms/mimms-${version}.tar.bz2";
sha256 = "0zmcd670mpq85cs3nvdq3i805ba0d1alqahfy1m9cpf7kxrivfml";
};
postInstall = ''
wrapProgram $out/bin/mimms \
--prefix LD_LIBRARY_PATH : ${libmms}/lib
'';
meta = {
homepage = https://savannah.nongnu.org/projects/mimms/;
license = stdenv.lib.licenses.gpl3;
description = "mimms is an mms (e.g. mms://) stream downloader";
longDescription = ''
mimms is a program designed to allow you to download streams
using the MMS protocol and save them to your computer, as
opposed to watching them live. Similar functionality is
available in full media player suites such as Xine, MPlayer,
and VLC, but mimms is quick and easy to use and, for the time
being, remains a useful program.
'';
};
}

View file

@ -10212,6 +10212,8 @@ let
minidjvu = callPackage ../applications/graphics/minidjvu { };
mimms = callPackage ../applications/audio/mimms {};
mirage = callPackage ../applications/graphics/mirage {};
mixxx = callPackage ../applications/audio/mixxx {