this repo has no description
at main 29 lines 799 B view raw
1{ 2 description = "ebil.club cli"; 3 4 inputs.nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; 5 6 outputs = 7 { self, nixpkgs }: 8 let 9 forAllSystems = 10 function: 11 nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed ( 12 system: function nixpkgs.legacyPackages.${system} 13 ); 14 in 15 { 16 packages = forAllSystems (pkgs: { 17 ebil = pkgs.callPackage ./nix/package.nix { }; 18 default = self.packages.${pkgs.stdenv.hostPlatform.system}.ebil; 19 }); 20 21 devShells = forAllSystems (pkgs: { 22 default = pkgs.callPackage ./nix/shell.nix { }; 23 }); 24 25 overlays.default = final: _: { ebil = final.callPackage ./nix/package.nix { }; }; 26 27 formatter = forAllSystems (pkgs: pkgs.callPackage ./nix/formatter.nix { }); 28 }; 29}