mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
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.1";
|
|
|
|
src = fetchhg {
|
|
url = "https://hg.sr.ht/~scoopta/wofi";
|
|
rev = "v${version}";
|
|
sha256 = "0rq6c8fv0h7xj3jw1i01r39dz0f31k7jgf7hpgl6mlsyn0ddc80z";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|