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