summary refs log tree commit diff
path: root/pkgs/development/libraries/clutter-gst
diff options
context:
space:
mode:
authorLuca Bruno <lethalman88@gmail.com>2015-04-10 17:02:57 +0200
committerLuca Bruno <lethalman88@gmail.com>2015-04-25 12:02:33 +0200
commitdb3b86560f11437e260ae6d6661c69fb5bb36c75 (patch)
tree7d21ce8f78907ea1e6ac97b9283ea13da9d7fc05 /pkgs/development/libraries/clutter-gst
parent38d6aec3f630b4ef012f902482ef0ad5a5170844 (diff)
downloadnixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.gz
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.bz2
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.lz
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.xz
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.tar.zst
nixpkgs-db3b86560f11437e260ae6d6661c69fb5bb36c75.zip
GNOME 3.16.1, closes #7357
Diffstat (limited to 'pkgs/development/libraries/clutter-gst')
-rw-r--r--pkgs/development/libraries/clutter-gst/3.0.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/libraries/clutter-gst/3.0.nix b/pkgs/development/libraries/clutter-gst/3.0.nix
new file mode 100644
index 00000000000..617501130ca
--- /dev/null
+++ b/pkgs/development/libraries/clutter-gst/3.0.nix
@@ -0,0 +1,26 @@
+{ fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl }:
+
+stdenv.mkDerivation rec {
+  name = "clutter-gst-3.0.4";
+
+  src = fetchurl {
+    url = "mirror://gnome/sources/clutter-gst/3.0/${name}.tar.xz";
+    sha256 = "0ahn6m9ca78cgf7xad16sb50x4dx0fcn5ircllilkir84iri2466";
+  };
+
+  propagatedBuildInputs = [ clutter gtk3 glib cogl ];
+  nativeBuildInputs = [ pkgconfig ];
+
+  postBuild = "rm -rf $out/share/gtk-doc";
+
+  meta = {
+    description = "GStreamer bindings for clutter";
+
+    homepage = http://www.clutter-project.org/;
+
+    license = stdenv.lib.licenses.lgpl2Plus;
+
+    maintainers = with stdenv.lib.maintainers; [ lethalman ];
+    platforms = stdenv.lib.platforms.gnu;  # arbitrary choice
+  };
+}