aux-search/flake.nix

35 lines
841 B
Nix
Raw Normal View History

2020-06-18 22:41:01 +00:00
{
description = "Code behind search.nixos.org";
inputs = {
nixpkgs = { url = "nixpkgs/nixos-unstable"; };
poetry2nix = { url = "github:nix-community/poetry2nix"; };
};
outputs = { self, nixpkgs, poetry2nix }:
let
systems = [ "x86_64-linux" "i686-linux" "x86_64-darwin" "aarch64-linux" ];
forAllSystems = f: nixpkgs.lib.genAttrs systems (system: f system);
allPackages = system:
let
pkgs = import nixpkgs {
inherit system;
overlays = [
poetry2nix.overlay
];
};
in
{
import_scripts = import ./import-scripts {
2020-07-02 12:27:49 +00:00
inherit pkgs;
2020-06-18 22:41:01 +00:00
};
frontend = import ./. {
2020-07-02 12:27:49 +00:00
inherit pkgs;
2020-06-18 22:41:01 +00:00
};
};
in
{
packages = forAllSystems allPackages;
};
}