mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
blur-effect: init at 1.1.3
This commit is contained in:
parent
158bc85918
commit
56488c9257
2 changed files with 35 additions and 0 deletions
33
pkgs/tools/graphics/blur-effect/default.nix
Normal file
33
pkgs/tools/graphics/blur-effect/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue