2016-09-18 22:35:23 +03:00
|
|
|
{ stdenv, fetchurl, pkgconfig, glib, gdk_pixbuf, gobjectIntrospection, gnome3 }:
|
|
|
|
|
|
|
|
let
|
|
|
|
majorVersion = "1.9";
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
2017-12-04 02:27:25 +03:00
|
|
|
name = "libmediaart-${majorVersion}.4";
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/libmediaart/${majorVersion}/${name}.tar.xz";
|
2017-12-04 02:27:25 +03:00
|
|
|
sha256 = "a57be017257e4815389afe4f58fdacb6a50e74fd185452b23a652ee56b04813d";
|
2016-09-18 22:35:23 +03:00
|
|
|
};
|
|
|
|
|
2017-12-04 02:27:25 +03:00
|
|
|
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
|
|
|
|
buildInputs = [ glib gdk_pixbuf ];
|
2016-09-18 22:35:23 +03:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Library tasked with managing, extracting and handling media art caches";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|