tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
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
14
, pam
15
15
, xkeyboard_config
16
16
, udisks2
17
17
-
18
17
, waylandSupport ? false, wayland-protocols, xwayland
19
18
, bluetoothSupport ? true, bluez5
20
19
, pulseSupport ? !stdenv.isDarwin, libpulseaudio
20
20
+
, directoryListingUpdater
21
21
}:
22
22
23
23
stdenv.mkDerivation rec {
···
25
25
version = "0.25.4";
26
26
27
27
src = fetchurl {
28
28
-
url = "http://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
28
28
+
url = "https://download.enlightenment.org/rel/apps/${pname}/${pname}-${version}.tar.xz";
29
29
sha256 = "sha256-VttdIGuCG5qIMdJucT5BCscLIlWm9D/N98Ae794jt6I=";
30
30
};
31
31
···
70
70
] ++ lib.optional waylandSupport "-Dwl=true";
71
71
72
72
passthru.providedSessions = [ "enlightenment" ];
73
73
+
74
74
+
passthru.updateScript = directoryListingUpdater { };
73
75
74
76
meta = with lib; {
75
77
description = "The Compositing Window Manager and Desktop Shell";