ca713ac877
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/worker/versions
21 lines
574 B
Nix
21 lines
574 B
Nix
{ stdenv, libX11, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "worker-${version}";
|
|
version = "3.15.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.boomerangsworld.de/cms/worker/downloads/${name}.tar.gz";
|
|
sha256 = "03zixi4yqcl05blyn09mlgk102yjbir8bp0yi4czd1sng0rhfc9x";
|
|
};
|
|
|
|
buildInputs = [ libX11 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A two-pane file manager with advanced file manipulation features";
|
|
homepage = http://www.boomerangsworld.de/cms/worker/index.html;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.ndowens ];
|
|
};
|
|
}
|