mirror of
https://github.com/ihaveamac/ninfs.git
synced 2025-06-18 17:05:32 -04:00
use pyctr flake in default.nix (so it can use the flake pinned one)
This commit is contained in:
parent
7675cf7eee
commit
78461945f0
@ -1,9 +1,12 @@
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
rec {
|
||||
let
|
||||
# just so i can use the same pinned version as the flake...
|
||||
pyctr = (import (builtins.getFlake (builtins.toString ./.)).inputs.pyctr { inherit pkgs; }).pyctr;
|
||||
in rec {
|
||||
haccrypto = pkgs.python3Packages.callPackage ./nix/haccrypto.nix {};
|
||||
mfusepy = pkgs.python3Packages.callPackage ./nix/mfusepy.nix {};
|
||||
ninfs = pkgs.python3Packages.callPackage ./package.nix { haccrypto = haccrypto; mfusepy = mfusepy; };
|
||||
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; };
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user