summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/text/popfile
AgeCommit message (Collapse)Author
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly
2018-12-14treewide: remove aliases evaluated to `null`volth
2018-07-21treewide: fix build with disallowed aliases (#43872)volth
fixes build with disallowed aliases
2017-11-17makeWrapper: delete --set-evalOrivej Desh
because --run is good enough.
2017-11-17treewide: use --set-default and --set-eval where appropriateOrivej Desh
2017-08-13Merge commit '4c49205' into HEADFrederik Rietdijk
2017-08-11treewide: use less `phases` if not necessaryRobin Gloster
This removes some skipping of e.g. fixupPhase and cleans up occurences where this led to duplicating code
2017-08-07replace "Mac OS X" and "OS X" with "macOS"davidak
as it is the official name since 2016 https://en.wikipedia.org/wiki/Macintosh_operating_systems#Desktop exception are parts refering to older versions of macOS like "GUI support for Mac OS X 10.6 - 10.12. Note that Emacs 23 and later [...]"
2016-02-27Remove all dots at end of descriptionszimbatm
Specially crafted for @JagaJaga find pkgs -name "*.nix" -exec \ sed -e 's|\(description.*\)\.";|\1";|g' -i {} \;
2016-02-01popfile: init at 1.1.3Badi' Abdul-Wahid
Popfile by default assumes that it is run directly from the install directory, in which it has full write access. This assumption is invalid on Nix, and so Popfile is pachted to accomodate this: - define `POPFILE_ROOT` in wrapper Default POPFile configuration assumes it is running in the installation directory. This patch wraps `popfile.pl` so that `POPFILE_ROOT` points to the installation directory - define and create if missing `POPFILE_USER` in wrapper POPFile stores stores state in the `POPFILE_USER` directory, which by default is the installation directory. This change sets `POPFILE_USER` to `$HOME/.popfile` by default, creating it with 0700 mode if necessary.