nixpkgs/pkgs-ng
Eelco Dolstra 1c2cebf738 * Bug fix.
svn path=/nixpkgs/trunk/; revision=483
2003-11-06 12:43:11 +00:00
..
applications/version-management/subversion * Added assertions and defaults to the Subversion package. 2003-11-05 16:28:26 +00:00
build-support/fetchurl * Updated to reflect the changes to the grammar. 2003-11-03 10:22:00 +00:00
development * Added assertions and defaults to the Subversion package. 2003-11-05 16:28:26 +00:00
os-specific/linux/kernel-headers * Updated to reflect the changes to the grammar. 2003-11-03 10:22:00 +00:00
servers/http/apache-httpd * Added assertions and defaults to the Subversion package. 2003-11-05 16:28:26 +00:00
shells/bash * Updated to reflect the changes to the grammar. 2003-11-03 10:22:00 +00:00
stdenv * Converted some more packages. 2003-11-05 12:17:48 +00:00
system * Bug fix. 2003-11-06 12:43:11 +00:00
tools * Added assertions and defaults to the Subversion package. 2003-11-05 16:28:26 +00:00
README * More refactoring. 2003-11-03 16:24:47 +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:
    ./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
    ./applications/misc