Skip to content

Commit

Permalink
use nixVersions.git
Browse files Browse the repository at this point in the history
dogfood nix before we hit a release
  • Loading branch information
Mic92 committed Sep 20, 2024
1 parent 23648d0 commit 93980b9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@
overlay = final: prev: {
nix-serve = final.pkgs.callPackage ./package.nix {
inherit self;
nix = final.nixVersions.git;
};
};

packages = forAllSystems (system: {
packages = forAllSystems (system: let
pkgs = nixpkgs.legacyPackages.${system};
in {
nix-serve = nixpkgs.legacyPackages.${system}.callPackage ./package.nix {
inherit self;
nix = pkgs.nixVersions.git;
};
});

Expand Down

0 comments on commit 93980b9

Please sign in to comment.