mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
2e6bf42a22
There ver very many conflicts, basically all due to name -> pname+version. Fortunately, almost everything was auto-resolved by kdiff3, and for now I just fixed up a couple evaluation problems, as verified by the tarball job. There might be some fallback to these conflicts, but I believe it should be minimal. Hydra nixpkgs: ?compare=1538299
21 lines
575 B
Nix
21 lines
575 B
Nix
{ stdenv, libX11, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "worker";
|
|
version = "4.0.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.boomerangsworld.de/cms/worker/downloads/${pname}-${version}.tar.gz";
|
|
sha256 = "1mwkyak68bsxgff399xmr7bb3hxl0r976b90zi7jrzznwlvxx7vh";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|