2021-06-04 07:22:26 +01:00
|
|
|
{ stdenv
|
|
|
|
, lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, wrapGAppsHook
|
|
|
|
, python3
|
|
|
|
, gsettings-desktop-schemas
|
|
|
|
, gettext
|
|
|
|
, gtk3
|
|
|
|
, glib
|
|
|
|
, common-licenses
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "bulky";
|
2021-07-03 04:22:41 +01:00
|
|
|
version = "1.7";
|
2021-06-04 07:22:26 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "linuxmint";
|
|
|
|
repo = "bulky";
|
|
|
|
rev = version;
|
2021-07-03 04:22:41 +01:00
|
|
|
sha256 = "sha256-+3OoeuGuyiHWlUrxm5A7CmNR+ijxdlmecmvqk+i+h08=";
|
2021-06-04 07:22:26 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
wrapGAppsHook
|
|
|
|
gsettings-desktop-schemas
|
|
|
|
gettext
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
(python3.withPackages(p: with p; [ pygobject3 magic setproctitle ]))
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Bulk rename app";
|
|
|
|
homepage = "https://github.com/linuxmint/bulky";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.mkg20001 ];
|
|
|
|
};
|
|
|
|
}
|