network_inventory/flake.nix

20 lines
523 B
Nix
Raw Normal View History

2021-12-08 18:07:49 +01:00
{
description = "A Python API for various tools I use at work.";
inputs = {
nixpkgs.url = github:NixOS/nixpkgs/nixos-21.11;
flake-utils.url = github:numtide/flake-utils;
mach-nix.url = "github:DavHau/mach-nix";
};
outputs = { self, nixpkgs, flake-utils, mach-nix }:
with flake-utils.lib; eachSystem allSystems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
rec {
2021-12-20 19:34:48 +01:00
devShell = pkgs.mkShell {
2021-12-20 21:18:24 +01:00
buildInputs = [ pkgs.gnumake ];
2021-12-08 18:07:49 +01:00
};
});
}