pepeflake/flake.nix
2024-12-28 18:08:20 +00:00

25 lines
603 B
Nix

{
description = "My project using flake-utils";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
};
outputs = { self, nixpkgs, flake-utils, flake-compat }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages = {
huenicorn = pkgs.callPackage ./huenicorn.nix { };
default = self.packages.${system}.huenicorn;
};
}
);
}