this code is a disgrace

This commit is contained in:
Xory 2025-09-24 16:16:45 +03:00
parent b2e898eeed
commit a397347001
5 changed files with 72 additions and 4 deletions

17
flake.nix Normal file
View file

@ -0,0 +1,17 @@
{
description = "Development flake for bluedis";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/release-25.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem
(system:
let pkgs = nixpkgs.legacyPackages.${system}; in
{
devShells.default = import ./shell.nix { inherit pkgs; };
}
);
}