7 lines
143 B
Nix
7 lines
143 B
Nix
{ inputs, system }:
|
|
let
|
|
pkgs = inputs.nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
supernote-tool = pkgs.callPackage ./supernote-tool.nix { };
|
|
}
|