nixpkgs/pkgs
Eelco Dolstra f39229bac9 * Gqview updated to 1.4.5.
svn path=/nixpkgs/trunk/; revision=1975
2004-12-30 17:38:54 +00:00
..
applications * Gqview updated to 1.4.5. 2004-12-30 17:38:54 +00:00
build-support * Allow a known hash to be specified. 2004-12-17 11:04:18 +00:00
data/sgml+xml * Scrollkeeper requires DocBook XML 4.2 (not 4.3). 2004-04-08 14:06:15 +00:00
development Upgrade of SDF2 Bundle to version 2.3 2004-12-23 21:18:00 +00:00
games * Added SDL, Simple DirectMedia Layer. 2004-09-26 18:12:51 +00:00
misc * Nix updated to 0.6. 2004-12-17 13:49:08 +00:00
os-specific/linux upgrade to 4.0.6, so it plays nice with other packages, changed header files, whatever... 2004-11-09 09:55:59 +00:00
servers * Apache httpd 2.0.52. 2004-10-15 13:56:02 +00:00
shells/bash * Bash updated to 3.0. 2004-09-18 17:08:16 +00:00
stdenv oops, don't forget binutils 2004-10-19 15:49:15 +00:00
system Removed ancient SDF versions 2004-12-23 21:25:07 +00:00
test * Ensure that when building gcc, libstdc++ is linked against the 2004-04-04 22:02:41 +00:00
tools * Added bsdiff 4.2. Wow, this is even better than zdelta (which in 2004-11-29 21:17:29 +00:00
BUGS * Remove fixed bugs. 2004-11-14 12:24:23 +00:00
README * Fixed Stratego. 2004-04-01 16:02:53 +00:00
STABLE * The contents of this file determines whether to build a stable (`1') 2004-04-27 10:50:05 +00:00
TODO * Make xlibs build again. 2004-09-18 21:11:16 +00:00
VERSION * Bump version number to 0.7. 2004-11-14 15:43:32 +00:00

* Classification scheme for packages

- many packages fall under several categories; what matters is the
  *primary* purpose of a package.  For example, the libxml2 package
  builds both a library and some tools; but it's a library foremost,
  so it goes under ./development/libraries. 

- when in doubt, refactor.

IF it's used to support SOFTWARE DEVELOPMENT:

  IF it's a LIBRARY used by other packages:
    IF it's directly related to GTK:
      ./development/libraries/gtk+
    ELSE
      ./development/libraries
      (e.g., libxml2)
  ELSE IF it's a COMPILER:
    ./development/compilers
    (e.g., gcc)
  ELSE IF it's an INTERPRETER:
    ./development/interpreters
  ELSE IF it's a development TOOL (or set of):
    IF it's a PARSER GENERATOR (incl. lexers):
      ./development/tools/parsing
      (e.g., bison, flex)
    ELSE IF it's a BUILD MANAGER:
      ./development/tools/build-managers
      (e.g., gnumake
    ELSE
      ./development/tools/misc
      (e.g., binutils)
  ELSE
    ./development/misc

ELSE IF it's a TOOL (or set of):
  # a tool is a relatively *small* program, esp. one intented to be
  # used non-interactively

  IF it's for NETWORKING:
    ./tools/networking
    (e.g., wget)
  ELSE IF it's for TEXT PROCESSING:
    ./tools/text
    (e.g., diffutils)
  ELSE IF it's a SYSTEM utility, i.e., something related or essential
    to the operation of a system:
    ./tools/system
    (e.g., init)
  ELSE IF it's an ARCHIVER (which may include a compression function):
    ./tools/archivers
    (e.g., zip, tar)
  ELSE IF it's a COMPRESSION program:
    ./tools/compression
    (e.g., gzip, bzip2)
  ELSE
    ./tools/misc

ELSE IF it's a SHELL:

  ./shells

ELSE IF it's a SERVER:

  IF it's a HTTP server:
    ./servers/http
    (e.g., apache)
  IF it's a X11 server:
    ./servers/x11
    (e.g., xfree86)
  ELSE
    ./servers/misc

ELSE IF it's a DESKTOP ENVIRONMENT (incl. WINDOW MANAGERS):

  ./desktops
  (e.g., kde, gnome, fvwm)

ELSE IF it's an APPLICATION:
  # a (typically large) program with a distinct user interface,
  # primarily used interactively

  IF it's a VERSION MANAGEMENT system:
    ./applications/version-management
  ELSE IF it's for VIDEO playback/etc:
    ./applications/video
  ELSE IF it's for GRAPHICS viewing/editing/etc:
    ./applications/graphics
  ELSE IF it's for NETWORKING:
    IF it's a MAILREADER:
      ./applications/networking/mailreaders
    IF it's a NEWSREADER:
      ./applications/networking/newsreaders
    ELSE
      ./applications/networking/misc
  ELSE
    ./applications/misc

ELSE IF it's DATA (i.e., doe not have a straight-forward executable semantics):

  IF it's related to SGML/XML processing:
    IF it's a XML DTD:
      ./data/sgml+xml/schemas/xml-dtd
    ELSE IF it's an XSLT stylesheet (okay, these are executable...):
      ./data/sgml+xml/stylesheets/xslt

ELSE IF it's a GAME:

  ./games

ELSE:

  ./misc