nixpkgs/pkgs/applications/misc/wofi/default.nix

33 lines
902 B
Nix
Raw Normal View History

2020-07-12 14:21:46 +00:00
{ stdenv, lib, fetchhg, fetchpatch, pkg-config, meson, ninja, wayland, gtk3, wrapGAppsHook, installShellFiles }:
2019-10-30 13:20:05 +00:00
stdenv.mkDerivation rec {
pname = "wofi";
version = "1.2.3";
2019-10-30 13:20:05 +00:00
src = fetchhg {
url = "https://hg.sr.ht/~scoopta/wofi";
2019-12-21 06:16:36 +00:00
rev = "v${version}";
sha256 = "0glpb2gf5n78s01z3rn614ak8ibxhfr824gy6xlljbxclgds264i";
2019-10-30 13:20:05 +00:00
};
2020-07-12 14:21:46 +00:00
nativeBuildInputs = [ pkg-config meson ninja wrapGAppsHook installShellFiles ];
2019-10-30 13:20:05 +00:00
buildInputs = [ wayland gtk3 ];
2020-08-22 11:41:01 +00:00
patches = [
# https://todo.sr.ht/~scoopta/wofi/121
./do_not_follow_symlinks.patch
];
2020-07-12 14:21:46 +00:00
postInstall = ''
installManPage man/wofi*
'';
2019-10-30 13:20:05 +00:00
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; [ elyhaka ];
2019-10-30 13:20:05 +00:00
platforms = with platforms; linux;
};
}