mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
34 lines
1 KiB
Nix
34 lines
1 KiB
Nix
{ stdenv, lib, fetchhg, fetchpatch, pkg-config, meson, ninja, wayland, gtk3, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wofi";
|
|
version = "1.1.2";
|
|
|
|
src = fetchhg {
|
|
url = "https://hg.sr.ht/~scoopta/wofi";
|
|
rev = "v${version}";
|
|
sha256 = "086j5wshawjbwdmmmldivfagc2rr7g5a2gk11l0snqqslm294xsn";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config meson ninja wrapGAppsHook ];
|
|
buildInputs = [ wayland gtk3 ];
|
|
|
|
# Fixes icon bug on NixOS.
|
|
# Will need to be removed on next release
|
|
# see https://todo.sr.ht/~scoopta/wofi/54
|
|
patches = [
|
|
(fetchpatch {
|
|
url = "https://paste.sr.ht/blob/1cbddafac3806afb203940c029e78ce8390d8f49";
|
|
sha256 = "1n4jpmh66p7asjhj0z2s94ny91lmaq4hhh2356nj406vlqr15vbb";
|
|
})
|
|
];
|
|
|
|
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 ];
|
|
platforms = with platforms; linux;
|
|
};
|
|
}
|