4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
58 lines
1.2 KiB
Nix
58 lines
1.2 KiB
Nix
{ lib, stdenv, fetchgit
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, alacritty
|
|
, cage
|
|
, cairo
|
|
, libxkbcommon
|
|
, udev
|
|
, wayland
|
|
, wayland-protocols
|
|
, wlroots
|
|
, xwayland
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wio";
|
|
version = "unstable-2020-11-02";
|
|
|
|
src = fetchgit {
|
|
url = "https://git.sr.ht/~sircmpwn/wio";
|
|
rev = "31b742e473b15a2087be740d1de28bc2afd47a4d";
|
|
sha256 = "1vpvlahv6dmr7vfb11p5cc5ds2y2vfvcb877nkqx18yin6pg357l";
|
|
};
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config makeWrapper ];
|
|
buildInputs = [
|
|
cairo
|
|
libxkbcommon
|
|
udev
|
|
wayland
|
|
wayland-protocols
|
|
wlroots
|
|
xwayland
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/wio \
|
|
--prefix PATH ":" "${stdenv.lib.makeBinPath [ alacritty cage ]}"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "That Plan 9 feel, for Wayland";
|
|
longDescription = ''
|
|
Wio is a Wayland compositor for Linux and FreeBSD which has a similar look
|
|
and feel to plan9's rio.
|
|
'';
|
|
homepage = "https://wio-project.org/";
|
|
license = licenses.mit;
|
|
platforms = with platforms; linux;
|
|
maintainers = with maintainers; [ AndersonTorres ];
|
|
};
|
|
|
|
passthru.providedSessions = [ "wio" ];
|
|
}
|
|
# TODO: factor Linux-specific options
|