···1+{ fetchurl, stdenv, pythonPackages, libmms }:
2+3+let version = "3.2";
4+in
5+ pythonPackages.buildPythonPackage {
6+ name = "mimms-${version}";
7+ src = fetchurl {
8+ url = "http://download.savannah.gnu.org/releases/mimms/mimms-${version}.tar.bz2";
9+ sha256 = "0zmcd670mpq85cs3nvdq3i805ba0d1alqahfy1m9cpf7kxrivfml";
10+ };
11+12+ postInstall = ''
13+ wrapProgram $out/bin/mimms \
14+ --prefix LD_LIBRARY_PATH : ${libmms}/lib
15+ '';
16+17+ meta = {
18+ homepage = https://savannah.nongnu.org/projects/mimms/;
19+ license = stdenv.lib.licenses.gpl3;
20+ description = "mimms is an mms (e.g. mms://) stream downloader";
21+22+ longDescription = ''
23+ mimms is a program designed to allow you to download streams
24+ using the MMS protocol and save them to your computer, as
25+ opposed to watching them live. Similar functionality is
26+ available in full media player suites such as Xine, MPlayer,
27+ and VLC, but mimms is quick and easy to use and, for the time
28+ being, remains a useful program.
29+ '';
30+ };
31+ }