wio: update repository

+11 -10
+11 -10
pkgs/applications/window-managers/wio/default.nix
··· 1 { lib 2 , stdenv 3 - , fetchFromBitbucket 4 - , meson 5 - , ninja 6 - , pkg-config 7 , alacritty 8 , cage 9 , cairo 10 , libxkbcommon 11 , udev 12 , wayland 13 , wayland-protocols 14 , wlroots 15 - , mesa 16 , xwayland 17 - , makeWrapper 18 }: 19 20 stdenv.mkDerivation rec { 21 pname = "wio"; 22 version = "0.pre+unstable=2021-06-27"; 23 24 - src = fetchFromBitbucket { 25 - owner = "anderson_torres"; 26 repo = pname; 27 rev = "e0b258777995055d69e61a0246a6a64985743f42"; 28 sha256 = "sha256-8H9fOnZsNjjq9XvOv68F4RRglGNluxs5/jp/h4ROLiI="; 29 }; 30 31 nativeBuildInputs = [ 32 meson 33 ninja 34 pkg-config 35 - makeWrapper 36 ]; 37 buildInputs = [ 38 cairo 39 libxkbcommon ··· 59 ''; 60 license = licenses.mit; 61 maintainers = with maintainers; [ AndersonTorres ]; 62 - platforms = with platforms; linux; 63 }; 64 65 passthru.providedSessions = [ "wio" ];
··· 1 { lib 2 , stdenv 3 + , fetchFromGitHub 4 , alacritty 5 , cage 6 , cairo 7 , libxkbcommon 8 + , makeWrapper 9 + , mesa 10 + , meson 11 + , ninja 12 + , pkg-config 13 , udev 14 , wayland 15 , wayland-protocols 16 , wlroots 17 , xwayland 18 }: 19 20 stdenv.mkDerivation rec { 21 pname = "wio"; 22 version = "0.pre+unstable=2021-06-27"; 23 24 + src = fetchFromGitHub { 25 + owner = "museoa"; 26 repo = pname; 27 rev = "e0b258777995055d69e61a0246a6a64985743f42"; 28 sha256 = "sha256-8H9fOnZsNjjq9XvOv68F4RRglGNluxs5/jp/h4ROLiI="; 29 }; 30 31 nativeBuildInputs = [ 32 + makeWrapper 33 meson 34 ninja 35 pkg-config 36 ]; 37 + 38 buildInputs = [ 39 cairo 40 libxkbcommon ··· 60 ''; 61 license = licenses.mit; 62 maintainers = with maintainers; [ AndersonTorres ]; 63 + inherit (wayland.meta) platforms; 64 }; 65 66 passthru.providedSessions = [ "wio" ];