wbg: 1.0.2 -> 1.1.0

authored by

rewine and committed by
Anderson Torres
b53d5fd0 d59fdad1

+7 -3
+7 -3
pkgs/applications/misc/wbg/default.nix
··· 11 11 , wayland-protocols 12 12 , enablePNG ? true 13 13 , enableJPEG ? true 14 + , enableWebp ? true 14 15 # Optional dependencies 15 16 , libpng 16 17 , libjpeg 18 + , libwebp 17 19 }: 18 20 19 21 stdenv.mkDerivation rec { 20 22 pname = "wbg"; 21 - version = "1.0.2"; 23 + version = "1.1.0"; 22 24 23 25 src = fetchFromGitea { 24 26 domain = "codeberg.org"; 25 27 owner = "dnkl"; 26 28 repo = "wbg"; 27 29 rev = version; 28 - sha256 = "sha256-PKEOWRcSAB4Uv5TfameQIEZh6s6xCGdyoZ13etL1TKA="; 30 + sha256 = "sha256-JJIIqSc0qHgjtpGKai8p6vihXg16unsO7vW91pioAmc="; 29 31 }; 30 32 31 33 nativeBuildInputs = [ ··· 41 43 wayland 42 44 wayland-protocols 43 45 ] ++ lib.optional enablePNG libpng 44 - ++ lib.optional enableJPEG libjpeg; 46 + ++ lib.optional enableJPEG libjpeg 47 + ++ lib.optional enableWebp libwebp; 45 48 46 49 mesonBuildType = "release"; 47 50 48 51 mesonFlags = [ 49 52 (lib.mesonEnable "png" enablePNG) 50 53 (lib.mesonEnable "jpeg" enableJPEG) 54 + (lib.mesonEnable "webp" enableWebp) 51 55 ]; 52 56 53 57 meta = with lib; {