diff options
author | swirl <roachh@protonmail.com> | 2022-01-09 10:56:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-09 10:56:47 -0500 |
commit | 459aafbca491d88ece67fd7258f9eb4db61426f9 (patch) | |
tree | e71f0cfc77a2eec7ec021d4a7ba69cb544dd23bc /flake.nix | |
parent | 5a09dcae68508b50b2dc5b273141e7016bdcc7da (diff) | |
parent | 957cd29dbf303771a6fbef54d37a07c002cd5843 (diff) | |
download | PrismLauncher-459aafbca491d88ece67fd7258f9eb4db61426f9.tar.gz PrismLauncher-459aafbca491d88ece67fd7258f9eb4db61426f9.tar.bz2 PrismLauncher-459aafbca491d88ece67fd7258f9eb4db61426f9.zip |
Merge pull request #34 from muscaln/develop
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -2,6 +2,10 @@ description = "PolyMC flake"; inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; inputs.flake-utils.url = "github:numtide/flake-utils"; + inputs.flake-compat = { + url = "github:edolstra/flake-compat"; + flake = false; + }; inputs.libnbtplusplus = { url = "github:multimc/libnbtplusplus"; flake = false; @@ -17,7 +21,7 @@ pkgs = import nixpkgs { inherit system; }; - + packages = { polymc = pkgs.libsForQt5.callPackage ./packages/nix/polymc { inherit self; @@ -25,7 +29,8 @@ submoduleNbt = libnbtplusplus; }; }; - + + # 'nix flake check' fails overlay = (final: prev: rec { polymc = prev.libsForQt5.callPackage ./packages/nix/polymc { inherit self; |