Merge pull request #140710 from AndersonTorres/new-wio

wio: update repository
This commit is contained in:
Anderson Torres 2021-10-06 10:57:05 -03:00 committed by GitHub
commit 5e2018f7b3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,39 +1,40 @@
{ lib { lib
, stdenv , stdenv
, fetchFromBitbucket , fetchFromGitHub
, meson
, ninja
, pkg-config
, alacritty , alacritty
, cage , cage
, cairo , cairo
, libxkbcommon , libxkbcommon
, makeWrapper
, mesa
, meson
, ninja
, pkg-config
, udev , udev
, wayland , wayland
, wayland-protocols , wayland-protocols
, wlroots , wlroots
, mesa
, xwayland , xwayland
, makeWrapper
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "wio"; pname = "wio";
version = "0.pre+unstable=2021-06-27"; version = "0.pre+unstable=2021-06-27";
src = fetchFromBitbucket { src = fetchFromGitHub {
owner = "anderson_torres"; owner = "museoa";
repo = pname; repo = pname;
rev = "e0b258777995055d69e61a0246a6a64985743f42"; rev = "e0b258777995055d69e61a0246a6a64985743f42";
sha256 = "sha256-8H9fOnZsNjjq9XvOv68F4RRglGNluxs5/jp/h4ROLiI="; sha256 = "sha256-8H9fOnZsNjjq9XvOv68F4RRglGNluxs5/jp/h4ROLiI=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
makeWrapper
meson meson
ninja ninja
pkg-config pkg-config
makeWrapper
]; ];
buildInputs = [ buildInputs = [
cairo cairo
libxkbcommon libxkbcommon
@ -59,7 +60,7 @@ stdenv.mkDerivation rec {
''; '';
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; linux; inherit (wayland.meta) platforms;
}; };
passthru.providedSessions = [ "wio" ]; passthru.providedSessions = [ "wio" ];