nixpkgs/pkgs/development/libraries/libmms/default.nix

22 lines
553 B
Nix
Raw Normal View History

{ stdenv, fetchurl, glib, pkgconfig }:
stdenv.mkDerivation rec {
name = "libmms-0.6.4";
src = fetchurl {
url = "mirror://sourceforge/libmms/${name}.tar.gz";
sha256 = "0kvhxr5hkabj9v7ah2rzkbirndfqdijd9hp8v52c1z6bxddf019w";
};
buildInputs = [ glib ];
nativeBuildInputs = [ pkgconfig ];
2018-10-18 21:03:23 +02:00
meta = with stdenv.lib; {
description = "Library for downloading (streaming) media files using the mmst and mmsh protocols";
homepage = http://libmms.sourceforge.net;
2018-10-18 21:03:23 +02:00
platforms = platforms.all;
license = licenses.lgpl21;
};
}