Merge pull request #140710 from AndersonTorres/new-wio
wio: update repository
This commit is contained in:
commit
5e2018f7b3
1 changed files with 11 additions and 10 deletions
|
@ -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" ];
|
||||||
|
|
Loading…
Reference in a new issue