about summary refs log tree commit diff
path: root/pkgs/tools/text/popfile
AgeCommit message (Collapse)AuthorFilesLines
2021-12-31popfile: fix meta.homepageBen Siraphob1-1/+1
2021-08-01treewide: fix redirected URLsBen Siraphob1-3/+3
Using the script in maintainers/scripts/update-redirected-urls.sh
2021-02-19treewide: makeWrapper buildInputs to nativeBuildInputsBen Siraphob1-1/+2
2021-01-15pkgs/tools: stdenv.lib -> libBen Siraphob1-3/+3
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2018-12-14treewide: remove aliases evaluated to `null`volth1-1/+0
2018-07-21treewide: fix build with disallowed aliases (#43872)volth1-2/+0
fixes build with disallowed aliases
2017-11-17makeWrapper: delete --set-evalOrivej Desh1-1/+1
because --run is good enough.
2017-11-17treewide: use --set-default and --set-eval where appropriateOrivej Desh1-2/+2
2017-08-13Merge commit '4c49205' into HEADFrederik Rietdijk1-1/+1
2017-08-11treewide: use less `phases` if not necessaryRobin Gloster1-10/+1
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"davidak1-1/+1
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 descriptionszimbatm1-1/+1
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-Wahid1-0/+71
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.