summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/grilo
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-04-06 14:44:40 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-04-06 15:23:12 +0200
commit994a1ee4ef105401eddbb7419181a6ed5b7b45d4 (patch)
treefdcce1f1bb22aaf2312b2f2d9715d889380e6ef4 /pkgs/desktops/gnome-3/core/grilo
parenteca21f192602e1fafac30e1ca53ac6d769b23a08 (diff)
downloadnixpkgs-994a1ee4ef105401eddbb7419181a6ed5b7b45d4.tar
nixpkgs-994a1ee4ef105401eddbb7419181a6ed5b7b45d4.tar.gz
nixpkgs-994a1ee4ef105401eddbb7419181a6ed5b7b45d4.tar.bz2
nixpkgs-994a1ee4ef105401eddbb7419181a6ed5b7b45d4.tar.lz
nixpkgs-994a1ee4ef105401eddbb7419181a6ed5b7b45d4.tar.xz
nixpkgs-994a1ee4ef105401eddbb7419181a6ed5b7b45d4.tar.zst
nixpkgs-994a1ee4ef105401eddbb7419181a6ed5b7b45d4.zip
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
Diffstat (limited to 'pkgs/desktops/gnome-3/core/grilo')
-rw-r--r--pkgs/desktops/gnome-3/core/grilo/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/desktops/gnome-3/core/grilo/default.nix b/pkgs/desktops/gnome-3/core/grilo/default.nix
new file mode 100644
index 00000000000..2a7f270300a
--- /dev/null
+++ b/pkgs/desktops/gnome-3/core/grilo/default.nix
@@ -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;
+  };
+}