source: trunk/nix/overlay.nix

Last change on this file was 92474375, checked in by Jean-Paul Calderone <exarkun@…>, at 2023-07-04T16:43:23Z

Add a flake with some packages and apps and an overlay

  • Property mode set to 100644
File size: 439 bytes
Line 
1# This overlay adds Tahoe-LAFS and all of its properly-configured Python
2# package dependencies to a Python package set.  Downstream consumers can
3# apply it to their own nixpkgs derivation to produce a Tahoe-LAFS package.
4final: prev: {
5  # Add our overrides such that they will be applied to any Python derivation
6  # in nixpkgs.
7  pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
8    (import ./python-overrides.nix)
9  ];
10}
Note: See TracBrowser for help on using the repository browser.