You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
658 B
Nix

{
description = "Streamlined Desktop Client";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs =
{ nixpkgs, ... }:
let
inherit (nixpkgs) lib;
inherit (builtins) attrNames;
inherit (lib.attrsets) genAttrs;
architectures = attrNames nixpkgs.legacyPackages;
forAllSystems = genAttrs architectures;
in
{
packages = forAllSystems (
system:
let
pkgs = import nixpkgs { inherit system; };
in
rec {
default = streamlined-client;
streamlined-client = pkgs.callPackage ./package.nix { };
}
);
};
}