ninfs/default.nix
2025-01-19 20:29:19 -06:00

14 lines
640 B
Nix

{
pkgs ? import <nixpkgs> {},
# just so i can use the same pinned version as the flake...
pyctr ? (import (builtins.getFlake (builtins.toString ./.)).inputs.pyctr { inherit pkgs; }).pyctr
}:
rec {
haccrypto = pkgs.python3Packages.callPackage ./nix/haccrypto.nix {};
mfusepy = pkgs.python3Packages.callPackage ./nix/mfusepy.nix {};
ninfs = pkgs.python3Packages.callPackage ./package.nix { inherit pyctr; haccrypto = haccrypto; mfusepy = mfusepy; };
ninfsNoGUI = ninfs.override { withGUI = false; };
#ninfsNoGUI = pkgs.python3Packages.callPackage ./ninfs.nix { haccrypto = haccrypto; mfusepy = mfusepy; withGUI = false; };
}