Merge pull request #72 from ysndr/patch-1

Fix Nix DevShell
This commit is contained in:
PaddiM8 2021-09-30 19:33:16 +02:00 committed by GitHub
commit f1d8cab5a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@
inherit system;
overlays = [ self.overlay ];
});
in {
in rec {
overlay = final: prev: {
kalker = final.rustPlatform.buildRustPackage {
pname = "kalker";
@ -58,7 +58,7 @@
devShell = forAllSystems (system:
nixpkgs.legacyPackages.${system}.mkShell {
inputsFrom = builtins.attrValues (packages);
inputsFrom = builtins.attrValues (packages.${system});
});
};
}