mirror of
https://github.com/ihaveamac/ninfs.git
synced 2025-06-18 17:05:32 -04:00
14 lines
640 B
Nix
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; };
|
|
}
|