mirror of
https://github.com/winapps-org/winapps.git
synced 2025-06-03 05:37:19 +02:00
28 lines
602 B
Nix
28 lines
602 B
Nix
{
|
|
description = "WinApps Nix packages & NixOS module";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
};
|
|
|
|
outputs =
|
|
{
|
|
nixpkgs,
|
|
flake-utils,
|
|
...
|
|
}:
|
|
flake-utils.lib.eachDefaultSystem (
|
|
system:
|
|
let
|
|
pkgs = import nixpkgs { inherit system; };
|
|
in
|
|
{
|
|
formatter = pkgs.nixfmt-rfc-style;
|
|
|
|
packages.winapps = pkgs.callPackage ./packages/winapps { };
|
|
packages.winapps-launcher = pkgs.callPackage ./packages/winapps-launcher { };
|
|
}
|
|
);
|
|
}
|