25 lines
589 B
Nix
25 lines
589 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-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
{
|
|
packages = {
|
|
huenicorn = pkgs.callPackage ./huenicorn.nix { };
|
|
default = self.packages.${system}.huenicorn;
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
|