mirror of
https://github.com/ihaveamac/ninfs.git
synced 2025-06-18 17:05:32 -04:00
7 lines
191 B
Nix
7 lines
191 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
rec {
|
|
haccrypto = pkgs.python3Packages.callPackage ./haccrypto.nix {};
|
|
ninfs = pkgs.python3Packages.callPackage ./ninfs.nix { haccrypto = haccrypto; };
|
|
}
|