mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
74a0ff512c
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. These checks were done: - built on NixOS - /nix/store/m3af3zhrxravdkwq8fcsgqrqyywfbl20-worker-3.15.1/bin/worker passed the binary check. - 1 of 1 passed binary check by having a zero exit code. - 0 of 1 passed binary check by having the new version present in output. - found 3.15.1 with grep in /nix/store/m3af3zhrxravdkwq8fcsgqrqyywfbl20-worker-3.15.1 - directory tree listing: https://gist.github.com/25a3c6e8ffd32fd4b88511e305669c51 - du listing: https://gist.github.com/6f5f0c3dfcb21b2d414fafa466d13283
21 lines
574 B
Nix
21 lines
574 B
Nix
{ stdenv, libX11, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "worker-${version}";
|
|
version = "3.15.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.boomerangsworld.de/cms/worker/downloads/${name}.tar.gz";
|
|
sha256 = "05h25dxqff4xhmrk7j9j11yxpqa4qm7m3xprv7yldryc1mbvnpwi";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|