mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-21 13:57:51 +00:00
11 lines
439 B
Nix
11 lines
439 B
Nix
|
# This overlay adds Tahoe-LAFS and all of its properly-configured Python
|
||
|
# package dependencies to a Python package set. Downstream consumers can
|
||
|
# apply it to their own nixpkgs derivation to produce a Tahoe-LAFS package.
|
||
|
final: prev: {
|
||
|
# Add our overrides such that they will be applied to any Python derivation
|
||
|
# in nixpkgs.
|
||
|
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
|
||
|
(import ./python-overrides.nix)
|
||
|
];
|
||
|
}
|