Skip to content

Commit

Permalink
worker: add version to name and so some minor cleanups (#22949)
Browse files Browse the repository at this point in the history
  • Loading branch information
ndowens authored and joachifm committed Feb 18, 2017
1 parent 6561faf commit e3f5ebd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/applications/misc/worker/default.nix
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{pkgs, stdenv, xorg, fetchurl }:
{ stdenv, libX11, fetchurl }:

stdenv.mkDerivation rec {
name = "worker";
name = "worker-${version}";
version = "3.8.5";

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";
};

buildInputs = with pkgs; [ xorg.libX11 ];
buildInputs = [ libX11 ];

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";
license = licenses.gpl2;
maintainers = [ maintainers.ndowens ];
Expand Down

0 comments on commit e3f5ebd

Please sign in to comment.