celluloid: 0.22 -> 0.23

This commit is contained in:
R. Ryantm 2022-03-08 02:37:59 +00:00 committed by Bobby Rong
parent b7deb4cf75
commit 9bc43e3bad
No known key found for this signature in database
GPG key ID: ED07364437C91161

View file

@ -18,13 +18,13 @@
stdenv.mkDerivation rec {
pname = "celluloid";
version = "0.22";
version = "0.23";
src = fetchFromGitHub {
owner = "celluloid-player";
repo = "celluloid";
rev = "v${version}";
hash = "sha256-QGN8YLtyb9YVNDK2ZDQwHJVg6UTIQssfNK9lQqxMNKQ=";
hash = "sha256-YKDud/UJJx9ko5k+Oux8mUUme0MXaRMngESE14Hhxv8=";
};
nativeBuildInputs = [
@ -46,8 +46,6 @@ stdenv.mkDerivation rec {
postPatch = ''
patchShebangs meson-post-install.py src/generate-authors.py
# Remove this for next release
substituteInPlace meson-post-install.py --replace "gtk-update-icon-cache" "gtk4-update-icon-cache"
'';
doCheck = true;