mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
worker: init at 3.8.5
modified: pkgs/top-level/all-packages.nix pick 8096649e47 worker: init at 3.8.5 squash 9267acbd46 modified: pkgs/top-level/all-packages.nix worker: updated default.nix license field Added myself to lib/maintainers.nix squash 28173341fa worker: updated default.nix license field squash b22407cf5c Added myself to lib/maintainers.nix Fixed indent and added missing > in maintainers.nix Fixed curly bracket indent
This commit is contained in:
parent
06bacb10e5
commit
a77705748b
@ -336,6 +336,7 @@
|
|||||||
Nate-Devv = "Nathan Moore <natedevv@gmail.com>";
|
Nate-Devv = "Nathan Moore <natedevv@gmail.com>";
|
||||||
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
nathan-gs = "Nathan Bijnens <nathan@nathan.gs>";
|
||||||
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
nckx = "Tobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>";
|
||||||
|
ndowens = "Nathan Owens <ndowens04@gmail.com>";
|
||||||
nequissimus = "Tim Steinbach <tim@nequissimus.com>";
|
nequissimus = "Tim Steinbach <tim@nequissimus.com>";
|
||||||
nfjinjing = "Jinjing Wang <nfjinjing@gmail.com>";
|
nfjinjing = "Jinjing Wang <nfjinjing@gmail.com>";
|
||||||
nhooyr = "Anmol Sethi <anmol@aubble.com>";
|
nhooyr = "Anmol Sethi <anmol@aubble.com>";
|
||||||
|
20
pkgs/applications/misc/worker/default.nix
Normal file
20
pkgs/applications/misc/worker/default.nix
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{pkgs, stdenv, xorg, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "worker";
|
||||||
|
version = "3.8.5";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://www.boomerangsworld.de/cms/worker/downloads/${name}-${version}.tar.gz";
|
||||||
|
sha256 = "1xy02jdf60wg2jycinl6682xg4zvphdj80f8xgs26ip45iqgkmvw";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with pkgs; [ xorg.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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -15589,6 +15589,8 @@ with pkgs;
|
|||||||
|
|
||||||
wordnet = callPackage ../applications/misc/wordnet { };
|
wordnet = callPackage ../applications/misc/wordnet { };
|
||||||
|
|
||||||
|
worker = callPackage ../applications/misc/worker { };
|
||||||
|
|
||||||
workrave = callPackage ../applications/misc/workrave {
|
workrave = callPackage ../applications/misc/workrave {
|
||||||
inherit (gnome2) GConf gconfmm;
|
inherit (gnome2) GConf gconfmm;
|
||||||
inherit (python27Packages) cheetah;
|
inherit (python27Packages) cheetah;
|
||||||
|
Loading…
Reference in New Issue
Block a user