Merge pull request #58566 from romildo/upd.blur-effect
blur-effect: init at 1.1.3
This commit is contained in:
commit
f1d7b51730
|
@ -0,0 +1,33 @@
|
||||||
|
{ stdenv, fetchFromGitHub, pkgconfig, cmake, gdk_pixbuf, libGL, mesa }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "blur-effect";
|
||||||
|
version = "1.1.3";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "sonald";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0cjw7iz0p7x1bi4vmwrivfidry5wlkgfgdl9wly88cm3z9ib98jj";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
pkgconfig
|
||||||
|
cmake
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gdk_pixbuf
|
||||||
|
libGL
|
||||||
|
mesa
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://github.com/sonald/blur-effect;
|
||||||
|
description = "Off-screen image blurring utility using OpenGL ES 3.0";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
broken = stdenv.hostPlatform.isDarwin; # packages 'libdrm' and 'gbm' not found
|
||||||
|
maintainers = with maintainers; [ romildo ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -979,6 +979,8 @@ in
|
||||||
|
|
||||||
bluemix-cli = callPackage ../tools/admin/bluemix-cli { };
|
bluemix-cli = callPackage ../tools/admin/bluemix-cli { };
|
||||||
|
|
||||||
|
blur-effect = callPackage ../tools/graphics/blur-effect { };
|
||||||
|
|
||||||
charles = charles4;
|
charles = charles4;
|
||||||
inherit (callPackage ../applications/networking/charles {})
|
inherit (callPackage ../applications/networking/charles {})
|
||||||
charles3
|
charles3
|
||||||
|
|
Loading…
Reference in New Issue