cinnamon.bulky 2.8 -> 2.9 https://repology.org/project/bulky/versions attrpath: cinnamon.bulky Checking auto update branch... No auto update branch exists Old version 2.8" not present in master derivation file with contents: { stdenv , lib , fetchFromGitHub , wrapGAppsHook , python3 , gobject-introspection , gsettings-desktop-schemas , gettext , gtk3 , glib , common-licenses }: stdenv.mkDerivation rec { pname = "bulky"; version = "2.9"; src = fetchFromGitHub { owner = "linuxmint"; repo = "bulky"; rev = version; hash = "sha256-eCu7AgL4bzstu8vsqBJImRZm1qMVnnycuOShY5fB+C4="; }; nativeBuildInputs = [ wrapGAppsHook gsettings-desktop-schemas gettext ]; buildInputs = [ (python3.withPackages (p: with p; [ pygobject3 magic setproctitle ])) gobject-introspection gsettings-desktop-schemas gtk3 glib ]; postPatch = '' substituteInPlace usr/lib/bulky/bulky.py \ --replace "/usr/share/locale" "$out/share/locale" \ --replace /usr/share/bulky "$out/share/bulky" \ --replace /usr/share/common-licenses "${common-licenses}/share/common-licenses" \ --replace __DEB_VERSION__ "${version}" ''; installPhase = '' runHook preInstall chmod +x usr/share/applications/* cp -ra usr $out ln -sf $out/lib/bulky/bulky.py $out/bin/bulky runHook postInstall ''; postInstall = '' glib-compile-schemas $out/share/glib-2.0/schemas ''; meta = with lib; { description = "Bulk rename app"; homepage = "https://github.com/linuxmint/bulky"; license = licenses.gpl3Plus; platforms = platforms.linux; maintainers = teams.cinnamon.members; }; }