22 lines
470 B
Nix
22 lines
470 B
Nix
|
{
|
||
|
description = "The website hosted at https://polynom.me";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/21.11";
|
||
|
};
|
||
|
|
||
|
outputs = {
|
||
|
self,
|
||
|
nixpkgs
|
||
|
}: let
|
||
|
supportedSystems = [ "x86_64-linux" ];
|
||
|
forAllSystems = nixpkgs.lib.attrsets.genAttrs supportedSystems;
|
||
|
in {
|
||
|
packages = forAllSystems (system: let
|
||
|
pkgs = import nixpkgs { inherit system; };
|
||
|
in {
|
||
|
default = pkgs.callPackage ./pkgs/shared-assets.nix {};
|
||
|
});
|
||
|
};
|
||
|
}
|