Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
838 B
Nix
44 lines
838 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
pkg-config,
|
|
cmake,
|
|
gdk-pixbuf,
|
|
libGL,
|
|
libgbm,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "blur-effect";
|
|
version = "1.1.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sonald";
|
|
repo = "blur-effect";
|
|
tag = version;
|
|
sha256 = "0cjw7iz0p7x1bi4vmwrivfidry5wlkgfgdl9wly88cm3z9ib98jj";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
gdk-pixbuf
|
|
libGL
|
|
libgbm
|
|
];
|
|
|
|
meta = with 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 ];
|
|
mainProgram = "blur_image";
|
|
};
|
|
}
|