Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

wofi: 2019-10-28 -> 1.0

+5 -12
+5 -12
pkgs/applications/misc/wofi/default.nix
··· 1 - { stdenv, lib, fetchhg, pkg-config, wayland, gtk3 }: 1 + { stdenv, lib, fetchhg, pkg-config, meson, ninja, wayland, gtk3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "wofi"; 5 - version = "2019-10-28"; 5 + version = "1.0"; 6 6 7 7 src = fetchhg { 8 8 url = "https://hg.sr.ht/~scoopta/wofi"; 9 - rev = "3fac708b2b541bb9927ec1b2389c4eb294e1b35b"; 10 - sha256 = "0sp9hqm1lv9wyxj8z7vazs25nvl6yznd5vfhmwb51axwkr79s2ym"; 9 + rev = "v${version}"; 10 + sha256 = "147yarm26nl0zc0a2rs7qi4jd7bz48vvyaygsif1qsv8fx0xiqqf"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkg-config ]; 13 + nativeBuildInputs = [ pkg-config meson ninja ]; 14 14 buildInputs = [ wayland gtk3 ]; 15 - 16 - sourceRoot = "hg-archive/Release"; 17 - 18 - installPhase = '' 19 - mkdir -p $out/bin 20 - cp wofi $out/bin/ 21 - ''; 22 15 23 16 meta = with lib; { 24 17 description = "A launcher/menu program for wlroots based wayland compositors such as sway";