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