tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hello-wayland: add update script
Alyssa Ross
2 years ago
6bda19fb
28fb1e5a
+3
1 changed file
expand all
collapse all
unified
split
pkgs
applications
graphics
hello-wayland
default.nix
+3
pkgs/applications/graphics/hello-wayland/default.nix
···
1
{ stdenv, lib, fetchFromGitHub
2
, imagemagick, pkg-config, wayland, wayland-protocols
0
3
}:
4
5
stdenv.mkDerivation {
···
22
install hello-wayland $out/bin
23
runHook postBuild
24
'';
0
0
25
26
meta = with lib; {
27
description = "Hello world Wayland client";
···
1
{ stdenv, lib, fetchFromGitHub
2
, imagemagick, pkg-config, wayland, wayland-protocols
3
+
, unstableGitUpdater
4
}:
5
6
stdenv.mkDerivation {
···
23
install hello-wayland $out/bin
24
runHook postBuild
25
'';
26
+
27
+
passthru.updateScript = unstableGitUpdater { };
28
29
meta = with lib; {
30
description = "Hello world Wayland client";