4-variable-simplifier/flake.nix
2025-07-01 12:15:15 -05:00

60 lines
946 B
Nix

# vim: set sw=2 ts=2 et: #
{
description = "description";
inputs.nixpkgs = { url = "github:NixOS/nixpkgs?ref=nixos-25.05"; };
inputs.flake-utils.url = "github:numtide/flake-utils";
inputs.flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
outputs = { self, nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
}; in {
devShells.default =
pkgs.mkShell {
buildInputs = with pkgs; [
gcc
gcc.man
gnumake
readline.dev
python3
valgrind
linux-manual
man-pages
man-pages-posix
# for my sake:
gedit
libreoffice
];
};
});
}