mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Add mimms, an mms (e.g. mms://) stream downloader
This commit is contained in:
parent
0d01793870
commit
a20ffe7f0f
2 changed files with 33 additions and 0 deletions
31
pkgs/applications/audio/mimms/default.nix
Normal file
31
pkgs/applications/audio/mimms/default.nix
Normal 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.
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue