this repo has no description
at main 595 B view raw
1{ 2 description = "Description for the project"; 3 4 inputs = { 5 flake-parts.url = "github:hercules-ci/flake-parts"; 6 nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; 7 pkgs-by-name-for-flake-parts.url = "github:drupol/pkgs-by-name-for-flake-parts"; 8 }; 9 10 outputs = 11 inputs@{ flake-parts, ... }: 12 flake-parts.lib.mkFlake { inherit inputs; } { 13 imports = [ inputs.pkgs-by-name-for-flake-parts.flakeModule ]; 14 systems = inputs.nixpkgs.lib.systems.flakeExposed; 15 perSystem = 16 { ... }: 17 { 18 pkgsDirectory = ./pkgs/by-name; 19 }; 20 }; 21}