mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-03-17 09:32:50 +00:00
Merge pull request #78492 from mothsART/feature/new-package-fluxboxlauncher
New package : fluxboxlauncher
This commit is contained in:
commit
3982db1894
56
pkgs/applications/misc/fluxboxlauncher/default.nix
Executable file
56
pkgs/applications/misc/fluxboxlauncher/default.nix
Executable file
|
@ -0,0 +1,56 @@
|
|||
{ lib
|
||||
, fetchFromGitHub
|
||||
, python3
|
||||
, gtk3
|
||||
, wrapGAppsHook
|
||||
, glibcLocales
|
||||
, gobject-introspection
|
||||
, gettext
|
||||
, pango
|
||||
, gdk-pixbuf
|
||||
, atk
|
||||
, fluxbox
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "fluxboxlauncher";
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mothsart";
|
||||
repo = "fluxboxlauncher";
|
||||
rev = "0.2.1";
|
||||
sha256 = "024h1dk0bhc5s4dldr6pqabrgcqih9p8cys5lqgkgz406y4vyzvf";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
wrapGAppsHook
|
||||
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" ];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
pygobject3
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Gui editor (gtk) to configure applications launching on a fluxbox session";
|
||||
homepage = "https://github.com/mothsART/fluxboxlauncher";
|
||||
maintainers = with maintainers; [ mothsart ];
|
||||
license = licenses.bsdOriginal;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -26143,4 +26143,6 @@ in
|
|||
quartus-prime-lite = callPackage ../applications/editors/quartus-prime {};
|
||||
|
||||
go-license-detector = callPackage ../development/tools/misc/go-license-detector { };
|
||||
|
||||
fluxboxlauncher = callPackage ../applications/misc/fluxboxlauncher {};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue