summary refs log tree commit diff
path: root/pkgs/applications/misc/wofi/default.nix
blob: 289c60b440298123de43423a1587c3f1a703f806 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, lib, fetchhg, pkg-config, meson, ninja, wayland, gtk3 }:

stdenv.mkDerivation rec {
  pname = "wofi";
  version = "1.0";

  src = fetchhg {
    url = "https://hg.sr.ht/~scoopta/wofi";
    rev = "v${version}";
    sha256 = "147yarm26nl0zc0a2rs7qi4jd7bz48vvyaygsif1qsv8fx0xiqqf";
  };

  nativeBuildInputs = [ pkg-config meson ninja ];
  buildInputs = [ wayland gtk3 ];

  meta = with lib; {
    description = "A launcher/menu program for wlroots based wayland compositors such as sway";
    homepage = "https://hg.sr.ht/~scoopta/wofi";
    license = licenses.gpl3;
    maintainers = with maintainers; [ erictapen ];
    platforms = with platforms; linux;
  };
}