Files
silos/flake.nix

29 lines
602 B
Nix
Raw Permalink Normal View History

2025-06-07 09:58:55 +05:30
{
description = "devshell";
outputs =
{ nixpkgs, ... }:
let
forAllSystems =
f: nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (s: f nixpkgs.legacyPackages.${s});
in
{
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell rec {
packages = with pkgs; [
stdenv.cc.cc
pkg-config
2025-11-13 19:04:16 +05:30
bacon
2025-06-07 09:58:55 +05:30
];
libraries = with pkgs; [
stdenv.cc.cc.lib
openssl.dev
];
LD_LIBRARY_PATH = "${pkgs.lib.makeLibraryPath libraries}";
};
});
};
}