depot/third_party/nixpkgs/pkgs/development/libraries/gnome-video-effects/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

40 lines
842 B
Nix

{ lib, stdenv
, fetchurl
, pkg-config
, meson
, ninja
, gettext
, gnome
}:
stdenv.mkDerivation rec {
pname = "gnome-video-effects";
version = "0.6.0";
src = fetchurl {
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
sha256 = "166utGs/WoMvsuDZC0K/jGFgICylKsmt0Xr84ZLjyKg=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
gettext
];
passthru = {
updateScript = gnome.updateScript {
packageName = pname;
versionPolicy = "none";
};
};
meta = with lib; {
description = "A collection of GStreamer effects to be used in different GNOME Modules";
homepage = "https://gitlab.gnome.org/GNOME/gnome-video-effects";
platforms = platforms.unix;
maintainers = teams.gnome.members;
license = licenses.gpl2;
};
}