mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
hello-wayland: init at 2020-07-27
This is a program that just displays a static cat picture in a Wayland window. I packaged it a while ago thinking it wouldn't be useful for anybody else, but a conversation on IRC today made me realise it would be! hello-wayland is very useful as a minimal example when hacking on Wayland ecosystem stuff -- even if Firefox doesn't work yet, hello-wayland probably will and that can be useful to guide you in the right direction!
This commit is contained in:
parent
163cda6c0b
commit
81b0104d85
2 changed files with 36 additions and 0 deletions
33
pkgs/applications/graphics/hello-wayland/default.nix
Normal file
33
pkgs/applications/graphics/hello-wayland/default.nix
Normal file
|
@ -0,0 +1,33 @@
|
|||
{ stdenv, lib, fetchFromGitHub
|
||||
, imagemagick, pkg-config, wayland, wayland-protocols
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "hello-wayland-unstable";
|
||||
version = "2020-07-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "emersion";
|
||||
repo = "hello-wayland";
|
||||
rev = "501d0851cfa7f21c780c0eb52f0a6b23f02918c5";
|
||||
sha256 = "0dz6przqp57kw8ycja3gw6jp9x12217nwbwdpgmvw7jf0lzhk4xr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ imagemagick pkg-config ];
|
||||
buildInputs = [ wayland wayland-protocols ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preBuild
|
||||
mkdir -p $out/bin
|
||||
install hello-wayland $out/bin
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Hello world Wayland client";
|
||||
homepage = "https://github.com/emersion/hello-wayland";
|
||||
maintainers = with maintainers; [ qyliss ];
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -22159,6 +22159,9 @@ in
|
|||
heimer = libsForQt5.callPackage ../applications/misc/heimer { };
|
||||
|
||||
hello = callPackage ../applications/misc/hello { };
|
||||
|
||||
hello-wayland = callPackage ../applications/graphics/hello-wayland { };
|
||||
|
||||
hello-unfree = callPackage ../applications/misc/hello-unfree { };
|
||||
|
||||
helmholtz = callPackage ../applications/audio/pd-plugins/helmholtz { };
|
||||
|
|
Loading…
Reference in a new issue