mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-19 13:07:56 +00:00
8 lines
352 B
Nix
8 lines
352 B
Nix
# This is the main entrypoint for the Tahoe-LAFS derivation.
|
|
{ pkgs ? import <nixpkgs> { } }:
|
|
# Add our Python packages to nixpkgs to simplify the expression for the
|
|
# Tahoe-LAFS derivation.
|
|
let pkgs' = pkgs.extend (import ./overlays.nix);
|
|
# Evaluate the expression for our Tahoe-LAFS derivation.
|
|
in pkgs'.python2.pkgs.callPackage ./tahoe-lafs.nix { }
|