narsil: bbc8fc5efd779ec885045f9b8d903d0df1bec1b2 -> f5ec6bd6b8013f2a2b74fc45b6f4c5374...
[NixPkgs.git] / pkgs / by-name / sw / sway-launcher-desktop / package.nix
blob93cc778fc4e9cf176629025093492b94368a7b3b
2   stdenv,
3   lib,
4   fzf,
5   gawk,
6   fetchFromGitHub,
7   makeWrapper,
8 }:
10 stdenv.mkDerivation rec {
11   pname = "sway-launcher-desktop";
12   version = "1.7.0";
14   src = fetchFromGitHub {
15     owner = "Biont";
16     repo = "sway-launcher-desktop";
17     rev = "v${version}";
18     hash = "sha256-lv1MLPJsJJjm6RLzZXWEz1JO/4EXTQ8wj225Di+98G4=";
19   };
21   postPatch = ''
22     patchShebangs ${pname}.sh
23   '';
25   buildInputs = [
26     fzf
27     gawk
28   ];
29   nativeBuildInputs = [ makeWrapper ];
31   installPhase = ''
32     install -d $out/bin
33     install ${pname}.sh $out/bin/${pname}
34     wrapProgram $out/bin/${pname} \
35       --prefix PATH : ${
36         lib.makeBinPath [
37           gawk
38           fzf
39         ]
40       }
41   '';
43   meta = with lib; {
44     description = "TUI Application launcher with Desktop Entry support";
45     mainProgram = "sway-launcher-desktop";
46     longDescription = ''
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.
50     '';
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 ];
56   };