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
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
gtk3,
|
|
wrapGAppsHook3,
|
|
glibcLocales,
|
|
gobject-introspection,
|
|
gettext,
|
|
pango,
|
|
gdk-pixbuf,
|
|
atk,
|
|
fluxbox,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "fluxboxlauncher";
|
|
version = "0.2.3";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mothsart";
|
|
repo = "fluxboxlauncher";
|
|
rev = "0.2.1";
|
|
sha256 = "024h1dk0bhc5s4dldr6pqabrgcqih9p8cys5lqgkgz406y4vyzvf";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
wrapGAppsHook3
|
|
gobject-introspection
|
|
pango
|
|
gdk-pixbuf
|
|
atk
|
|
gettext
|
|
];
|
|
|
|
buildInputs = [
|
|
glibcLocales
|
|
gtk3
|
|
python3
|
|
fluxbox
|
|
];
|
|
|
|
makeWrapperArgs = [
|
|
"--set LOCALE_ARCHIVE ${glibcLocales}/lib/locale/locale-archive"
|
|
"--set CHARSET en_us.UTF-8"
|
|
];
|
|
|
|
build-system = with python3.pkgs; [
|
|
setuptools
|
|
];
|
|
|
|
dependencies = with python3.pkgs; [
|
|
pygobject3
|
|
];
|
|
|
|
postInstall = ''
|
|
install -Dm444 fluxboxlauncher.desktop -t $out/share/applications
|
|
install -Dm444 fluxboxlauncher.svg -t $out/share/icons/hicolor/scalable/apps
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Gui editor (gtk) to configure applications launching on a fluxbox session";
|
|
mainProgram = "fluxboxlauncher";
|
|
homepage = "https://github.com/mothsART/fluxboxlauncher";
|
|
maintainers = with maintainers; [ mothsart ];
|
|
license = licenses.bsdOriginal;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|