10 stdenv.mkDerivation rec {
11 pname = "sway-launcher-desktop";
14 src = fetchFromGitHub {
16 repo = "sway-launcher-desktop";
18 hash = "sha256-lv1MLPJsJJjm6RLzZXWEz1JO/4EXTQ8wj225Di+98G4=";
22 patchShebangs ${pname}.sh
29 nativeBuildInputs = [ makeWrapper ];
33 install ${pname}.sh $out/bin/${pname}
34 wrapProgram $out/bin/${pname} \
44 description = "TUI Application launcher with Desktop Entry support";
45 mainProgram = "sway-launcher-desktop";
47 This is a TUI-based launcher menu made with bash and the amazing fzf.
48 Despite its name, it does not (read: no longer) depend on the Sway window manager
49 in any way and can be used with just about any WM.
51 homepage = "https://github.com/Biont/sway-launcher-desktop";
52 changelog = "https://github.com/Biont/sway-launcher-desktop/releases/tag/v${version}";
53 license = licenses.gpl3;
54 platforms = platforms.linux;
55 maintainers = [ maintainers.pyrox0 ];