Skip to content

Commit

Permalink
blur-effect: init at 1.1.3
Browse files Browse the repository at this point in the history
(cherry picked from commit 56488c9)
  • Loading branch information
romildo authored and worldofpeace committed Apr 4, 2019
1 parent 956069f commit a2b904f
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
33 changes: 33 additions & 0 deletions pkgs/tools/graphics/blur-effect/default.nix
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -960,6 +960,8 @@ in

bluemix-cli = callPackage ../tools/admin/bluemix-cli { };

blur-effect = callPackage ../tools/graphics/blur-effect { };

charles = charles4;
inherit (callPackage ../applications/networking/charles {})
charles3
Expand Down

0 comments on commit a2b904f

Please sign in to comment.