pepeflake/flake.nix

24 lines
509 B
Nix
Raw Normal View History

2024-12-28 17:56:53 +00:00
{
description = "My project using flake-utils";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
};
2024-12-28 18:11:23 +00:00
outputs = { self, nixpkgs, flake-utils }:
2024-12-28 17:56:53 +00:00
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages = {
huenicorn = pkgs.callPackage ./huenicorn.nix { };
default = self.packages.${system}.huenicorn;
};
}
);
}