mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
grilo: new package
Framework that provides access to various sources of multimedia content, using a pluggable system https://wiki.gnome.org/action/show/Projects/Grilo
This commit is contained in:
parent
eca21f1926
commit
994a1ee4ef
2 changed files with 24 additions and 0 deletions
22
pkgs/desktops/gnome-3/core/grilo/default.nix
Normal file
22
pkgs/desktops/gnome-3/core/grilo/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ stdenv, fetchurl, pkgconfig, file, intltool, glib, libxml2, gnome3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "grilo-0.2.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/grilo/0.2/${name}.tar.xz";
|
||||
sha256 = "559a2470fe541b0090bcfdfac7a33e92dba967727bbab6d0eca70e5636a77b25";
|
||||
};
|
||||
|
||||
configureFlags = [ "--enable-grl-pls" ];
|
||||
|
||||
buildInputs = [ pkgconfig file intltool glib libxml2 gnome3.totem-pl-parser ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/action/show/Projects/Grilo;
|
||||
description = "Framework that provides access to various sources of multimedia content, using a pluggable system";
|
||||
maintainers = with maintainers; [ lethalman ];
|
||||
license = licenses.lgpl2;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -80,6 +80,8 @@ rec {
|
|||
|
||||
gnome_themes_standard = callPackage ./core/gnome-themes-standard { };
|
||||
|
||||
grilo = callPackage ./core/grilo { };
|
||||
|
||||
gsettings_desktop_schemas = callPackage ./core/gsettings-desktop-schemas { };
|
||||
|
||||
gucharmap = callPackage ./core/gucharmap { };
|
||||
|
|
Loading…
Reference in a new issue