pepeflake/flake.nix

25 lines
589 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:06:03 +00:00
flake-compat.url = "https://flakehub.com/f/edolstra/flake-compat/1.tar.gz";
2024-12-28 17:56:53 +00:00
};
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages = {
huenicorn = pkgs.callPackage ./huenicorn.nix { };
default = self.packages.${system}.huenicorn;
};
}
);
}