nixos-linapple/flake.nix

33 lines
561 B
Nix
Raw Normal View History

2024-08-23 12:03:24 -05:00
{
description = "linapple";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-unstable";
};
flake-utils = {
url = "github:numtide/flake-utils";
};
};
outputs = {
self,
nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem
(
system: let
pkgs = import nixpkgs {
inherit system;
};
in {
packages = {
linapple = pkgs.callPackage ./package.nix {};
default = self.packages.${system}.linapple;
};
}
);
}