tahoe-lafs/nix/default.nix

8 lines
352 B
Nix
Raw Normal View History

2019-12-18 14:04:47 +00:00
# This is the main entrypoint for the Tahoe-LAFS derivation.
{ pkgs ? import <nixpkgs> { } }:
2019-12-18 14:04:47 +00:00
# Add our Python packages to nixpkgs to simplify the expression for the
# Tahoe-LAFS derivation.
let pkgs' = pkgs.extend (import ./overlays.nix);
2019-12-18 14:04:47 +00:00
# Evaluate the expression for our Tahoe-LAFS derivation.
in pkgs'.python2.pkgs.callPackage ./tahoe-lafs.nix { }