{ inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; library.url = "git+https://git.foss-syndicate.org/vhack.eu/nix-library?ref=prime"; }; outputs = { nixpkgs, library, ... }: let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages."${system}"; inherit (library) nixLib; shells = nixLib.mkByName { useShards = false; baseDirectory = ./shells; fileName = "shell.nix"; finalizeFunction = name: value: pkgs.callPackage value {}; }; in { devShells."${system}" = shells; }; }