tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
enlightenment.enlightenment: add update script
José Romildo
3 years ago
767b1fd5
a15e0833
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
desktops
enlightenment
enlightenment
default.nix
+4
-2
pkgs/desktops/enlightenment/enlightenment/default.nix
···
14
, pam
15
, xkeyboard_config
16
, udisks2
17
-
18
, waylandSupport ? false, wayland-protocols, xwayland
19
, bluetoothSupport ? true, bluez5
20
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
0
21
}:
22
23
stdenv.mkDerivation rec {
···
25
version = "0.25.4";
26
27
src = fetchurl {
28
-
url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
29
sha256 = "sha256-VttdIGuCG5qIMdJucT5BCscLIlWm9D/N98Ae794jt6I=";
30
};
31
···
70
] ++ lib.optional waylandSupport "-Dwl=true";
71
72
passthru.providedSessions = [ "enlightenment" ];
0
0
73
74
meta = with lib; {
75
description = "The Compositing Window Manager and Desktop Shell";
···
14
, pam
15
, xkeyboard_config
16
, udisks2
0
17
, waylandSupport ? false, wayland-protocols, xwayland
18
, bluetoothSupport ? true, bluez5
19
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
20
+
, directoryListingUpdater
21
}:
22
23
stdenv.mkDerivation rec {
···
25
version = "0.25.4";
26
27
src = fetchurl {
28
+
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
29
sha256 = "sha256-VttdIGuCG5qIMdJucT5BCscLIlWm9D/N98Ae794jt6I=";
30
};
31
···
70
] ++ lib.optional waylandSupport "-Dwl=true";
71
72
passthru.providedSessions = [ "enlightenment" ];
73
+
74
+
passthru.updateScript = directoryListingUpdater { };
75
76
meta = with lib; {
77
description = "The Compositing Window Manager and Desktop Shell";