worker: add version to name and so some minor cleanups (#22949)
This commit is contained in:
parent
6561fafb4a
commit
e3f5ebd38f
@ -1,18 +1,18 @@
|
|||||||
{pkgs, stdenv, xorg, fetchurl }:
|
{ stdenv, libX11, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "worker";
|
name = "worker-${version}";
|
||||||
version = "3.8.5";
|
version = "3.8.5";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.boomerangsworld.de/cms/worker/downloads/${name}-${version}.tar.gz";
|
url = "http://www.boomerangsworld.de/cms/worker/downloads/${name}.tar.gz";
|
||||||
sha256 = "1xy02jdf60wg2jycinl6682xg4zvphdj80f8xgs26ip45iqgkmvw";
|
sha256 = "1xy02jdf60wg2jycinl6682xg4zvphdj80f8xgs26ip45iqgkmvw";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = with pkgs; [ xorg.libX11 ];
|
buildInputs = [ libX11 ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "a two-pane file manager with advanced file manipulation features";
|
description = "A two-pane file manager with advanced file manipulation features";
|
||||||
homepage = "http://www.boomerangsworld.de/cms/worker/index.html";
|
homepage = "http://www.boomerangsworld.de/cms/worker/index.html";
|
||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
maintainers = [ maintainers.ndowens ];
|
maintainers = [ maintainers.ndowens ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user