nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{ stdenv, fetchurl, glib, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 name = "libmms-0.6.4";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/libmms/${name}.tar.gz";
8 sha256 = "0kvhxr5hkabj9v7ah2rzkbirndfqdijd9hp8v52c1z6bxddf019w";
9 };
10
11 buildInputs = [ glib ];
12
13 nativeBuildInputs = [ pkgconfig ];
14
15 meta = with stdenv.lib; {
16 description = "Library for downloading (streaming) media files using the mmst and mmsh protocols";
17 homepage = "http://libmms.sourceforge.net";
18 platforms = platforms.all;
19 license = licenses.lgpl21;
20 };
21}