mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
21 lines
573 B
Nix
21 lines
573 B
Nix
{ stdenv, libX11, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "worker-${version}";
|
|
version = "3.8.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.boomerangsworld.de/cms/worker/downloads/${name}.tar.gz";
|
|
sha256 = "1xy02jdf60wg2jycinl6682xg4zvphdj80f8xgs26ip45iqgkmvw";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|