mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
b73e3b6095
This is a squash commit of the joint work from: * Jan Tojnar (@jtojnar) * Linus Heckemann (@lheckemann) * Ryan Mulligan (@ryantm) * romildo (@romildo) * Tom Hunger (@teh)
29 lines
755 B
Nix
29 lines
755 B
Nix
{ fetchurl, stdenv, pkgconfig, clutter, gtk3, glib, cogl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
major = "3.0";
|
|
minor = "24";
|
|
name = "clutter-gst-${major}.${minor}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/clutter-gst/${major}/${name}.tar.xz";
|
|
sha256 = "0v6cg0syh4vx7y7ni47jsvr2r57q0j3h1f1gjlp0ciscixywiwg9";
|
|
};
|
|
|
|
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
|
|
};
|
|
}
|