Make nix support not rely on flakes

This commit is contained in:
cidkidnix 2022-01-08 01:34:32 -06:00
parent fc81b81c26
commit 73c0a0d43b
2 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,6 @@
description = "PolyMC";
outputs = inputs: {
overlay = self: super: rec {
polymc = super.libsForQt5.callPackage ./nix/polymc {};
};
overlay = import ./overlay.nix;
};
}

3
overlay.nix Normal file
View File

@ -0,0 +1,3 @@
self: super: rec {
polymc = super.libsForQt5.callPackage ./nix/polymc {};
}