mirror of
https://github.com/ihaveamac/ninfs.git
synced 2025-06-18 17:05:32 -04:00
22 lines
561 B
Nix
22 lines
561 B
Nix
{
|
|
description = "ninfs";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs = inputs@{ self, nixpkgs, flake-utils }:
|
|
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let pkgs = nixpkgs.legacyPackages.${system}; in {
|
|
|
|
packages = rec {
|
|
haccrypto = pkgs.python3Packages.callPackage ./haccrypto.nix {};
|
|
ninfs = pkgs.python3Packages.callPackage ./ninfs.nix { haccrypto = haccrypto; };
|
|
default = ninfs;
|
|
};
|
|
}
|
|
);
|
|
}
|