Merge pull request #58566 from romildo/upd.blur-effect

blur-effect: init at 1.1.3
This commit is contained in:
worldofpeace 2019-03-31 21:54:31 -04:00 committed by GitHub
commit f1d7b51730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 35 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -979,6 +979,8 @@ in
bluemix-cli = callPackage ../tools/admin/bluemix-cli { };
blur-effect = callPackage ../tools/graphics/blur-effect { };
charles = charles4;
inherit (callPackage ../applications/networking/charles {})
charles3