summary refs log tree commit diff
path: root/pkgs/development/libraries/libmms/default.nix
blob: a56b18fe199083db3c8505a9cfbadf9105badc9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, glib, pkg-config }:

stdenv.mkDerivation rec {
  name = "libmms-0.6.4";

  src = fetchurl {
    url = "mirror://sourceforge/libmms/${name}.tar.gz";
    sha256 = "0kvhxr5hkabj9v7ah2rzkbirndfqdijd9hp8v52c1z6bxddf019w";
  };

  buildInputs = [ glib ];

  nativeBuildInputs = [ pkg-config ];

  meta = with stdenv.lib; {
    description = "Library for downloading (streaming) media files using the mmst and mmsh protocols";
    homepage = "http://libmms.sourceforge.net";
    platforms = platforms.all;
    license = licenses.lgpl21;
  };
}