1{
2 lib,
3 stdenv,
4 fetchurl,
5 libX11,
6}:
7
8stdenv.mkDerivation (finalAttrs: {
9 pname = "worker";
10 version = "5.2.2";
11
12 src = fetchurl {
13 url = "http://www.boomerangsworld.de/cms/worker/downloads/worker-${finalAttrs.version}.tar.gz";
14 hash = "sha256-xJxdOb6eEr8suf3u/vouYCGzTFugJpLtoKyCMeuoJv4=";
15 };
16
17 buildInputs = [ libX11 ];
18
19 outputs = [
20 "out"
21 "man"
22 ];
23
24 strictDeps = true;
25
26 meta = {
27 homepage = "http://www.boomerangsworld.de/cms/worker/index.html";
28 description = "Advanced orthodox file manager";
29 longDescription = ''
30 Worker is a two-pane file manager for the X Window System on UN*X. The
31 directories and files are shown in two independent panels supporting a lot
32 of advanced file manipulation features. The main focus is to make managing
33 files easy with full keyboard control, also assisting in finding files and
34 directories by using history of accessed directories, live filtering, and
35 access to commands by using the keyboard.
36 '';
37 license = with lib.licenses; [ gpl2Plus ];
38 mainProgram = "worker";
39 maintainers = with lib.maintainers; [ ];
40 inherit (libX11.meta) platforms;
41 };
42})