···152152 if "$deepClone"; then
153153 # The caller explicitly asked for a deep clone. Deep clones
154154 # allow "git describe" and similar tools to work. See
155155- # http://thread.gmane.org/gmane.linux.distributions.nixos/3569
155155+ # https://marc.info/?l=nix-dev&m=139641582514772
156156 # for a discussion.
157157 return 1
158158 fi
···4455 Use a template for taskwarrior install path.
6677-diff --git a/taskw/warrior.py b/taskw/warrior.py
88-index 21dde88..e0509f2 100644
97--- a/taskw/warrior.py
108+++ b/taskw/warrior.py
1111-@@ -451,17 +451,17 @@ class TaskWarriorShellout(TaskWarriorBase):
1212- def _execute(self, *args):
1313- """ Execute a given taskwarrior command with arguments
1414-1515- Returns a 2-tuple of stdout and stderr (respectively).
1616-1717- """
1818- command = (
1919- [
99+@@ -449 +449 @@ class TaskWarriorShellout(TaskWarriorBase):
2010- 'task',
2111+ '@@taskwarrior@@/bin/task',
2222- 'rc:%s' % self.config_filename,
2323- ]
2424- + self.get_configuration_override_args()
2525- + [six.text_type(arg) for arg in args]
2626- )
2727-2828- # subprocess is expecting bytestrings only, so nuke unicode if present
2929- for i in range(len(command)):
3030-@@ -525,17 +525,17 @@ class TaskWarriorShellout(TaskWarriorBase):
3131- except OSError:
3232- # OSError is raised if subprocess.Popen fails to find
3333- # the executable.
3434- return False
3535-3636- @classmethod
3737- def get_version(cls):
3838- taskwarrior_version = subprocess.Popen(
3939-- ['task', '--version'],
4040-+ ['@@taskwarrior@@/bin/task', '--version'],
4141- stdout=subprocess.PIPE
4242- ).communicate()[0]
4343- return LooseVersion(taskwarrior_version.decode())
4444-4545- def sync(self, init=False):
4646- if self.get_version() < LooseVersion('2.3'):
4747- raise UnsupportedVersionException(
4848- "'sync' requires version 2.3 of taskwarrior or later."
1212+@@ -553 +553 @@ class TaskWarriorShellout(TaskWarriorBase):
1313+- ['task', '--version'],
1414++ ['@@taskwarrior@@/bin/task', '--version'],
+1-1
pkgs/development/tools/misc/dejagnu/default.nix
···14141515 # Note: The test-suite *requires* /dev/pts among the `build-chroot-dirs' of
1616 # the build daemon when building in a chroot. See
1717- # <http://thread.gmane.org/gmane.linux.distributions.nixos/1036> for
1717+ # <https://www.mail-archive.com/nix-dev@cs.uu.nl/msg01056.html> for
1818 # details.
19192020 # The test-suite needs to have a non-empty stdin:
+1-1
pkgs/os-specific/linux/ati-drivers/default.nix
···1919# make sure libglx.so of ati is used. xorg.xorgserver does provide it as well
2020# which is a problem because it doesn't contain the xorgserver patch supporting
2121# the XORG_DRI_DRIVER_PATH env var.
2222-# See http://thread.gmane.org/gmane.linux.distributions.nixos/4145 for a
2222+# See https://marc.info/?l=nix-dev&m=139641585515351 for a
2323# workaround (TODO)
24242525# The gentoo ebuild contains much more "magic" and is usually a great resource to