mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 22:32:58 +03:00
gnome-video-effects: init at 0.4.1
This commit is contained in:
parent
b093790ae2
commit
eda4fd9be7
@ -330,6 +330,8 @@ let
|
||||
|
||||
pomodoro = callPackage ./misc/pomodoro { };
|
||||
|
||||
gnome-video-effects = callPackage ./misc/gnome-video-effects { };
|
||||
|
||||
};
|
||||
in self; # pkgsFun
|
||||
|
||||
|
@ -0,0 +1,20 @@
|
||||
{ stdenv, fetchurl, pkgconfig, intltool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-video-effects-${version}";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gnome-video-effects/0.4/${name}.tar.xz";
|
||||
sha256 = "0jl4iny2dqpcgi3sgxzpgnbw0752i8ay3rscp2cgdjlp79ql5gil";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig intltool ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/Projects/GnomeVideoEffects;
|
||||
platforms = platforms.linux;
|
||||
maintainers = gnome3.maintainers;
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user