We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50d4335 commit 03385bcCopy full SHA for 03385bc
flake.nix
@@ -89,9 +89,17 @@
89
build = self.hydraJobs.build.${system};
90
});
91
92
- devShell = forAllSystems (system: pkgs.mkShell {
93
- buildInputs = [ self.defaultPackage.${system}.inputDerivation];
94
- });
+ devShell = forAllSystems (system: self.devShells.${system}.glibc);
+
+ devShells = forAllSystems (system:
95
+ {
96
+ glibc = pkgs.mkShell {
97
+ buildInputs = [ self.packages.${system}.patchelf.inputDerivation];
98
+ };
99
+ musl = pkgs.pkgsMusl.mkShell {
100
+ buildInputs = [ self.packages.${system}.patchelf-musl.inputDerivation];
101
102
+ });
103
104
defaultPackage = forAllSystems (system:
105
self.packages.${system}.patchelf
0 commit comments