mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
fb16dfecae
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
658 B
Plaintext
13 lines
658 B
Plaintext
Nix is a purely functional package manager. This means that it treats packages
|
|
like values in purely functional programming languages such as Haskell -- they
|
|
are built by functions that don't have side-effects, and they never change
|
|
after they have been built. Nix stores packages in the Nix store, usually the
|
|
directory /nix/store, where each package has its own unique subdirectory such
|
|
as
|
|
|
|
/nix/store/b6gvzjyb2pg0kjfwrjmg1vfhh54ad73z-firefox-33.1/
|
|
|
|
where b6gvzjyb2pg0... is a unique identifier for the package that captures all
|
|
its dependencies (it's a cryptographic hash of the package's build dependency
|
|
graph). This enables many powerful features.
|