24 lines
671 B
Nix
24 lines
671 B
Nix
{ 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;
|
|
};
|
|
}
|