mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
39 lines
1.2 KiB
Nix
39 lines
1.2 KiB
Nix
{
|
|
description = "Disko - declarative disk partitioning";
|
|
|
|
# FIXME: in future we don't want lock here to give precedence to a USB live-installer's registry,
|
|
# but garnix currently does not allow this.
|
|
#inputs.nixpkgs.url = "nixpkgs";
|
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
outputs = { self, nixpkgs, ... }: let
|
|
supportedSystems = [
|
|
"x86_64-linux"
|
|
"i686-linux"
|
|
"aarch64-linux"
|
|
];
|
|
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
|
in {
|
|
nixosModules.disko = import ./module.nix;
|
|
lib = import ./. {
|
|
inherit (nixpkgs) lib;
|
|
};
|
|
packages = forAllSystems (system: let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in {
|
|
disko = pkgs.callPackage ./package.nix {};
|
|
default = self.packages.${system}.disko;
|
|
});
|
|
# TODO: disable bios-related tests on aarch64...
|
|
checks = forAllSystems (system: let
|
|
pkgs = nixpkgs.legacyPackages.${system};
|
|
in
|
|
# Run tests: nix flake check -L
|
|
import ./tests {
|
|
inherit pkgs;
|
|
makeTest = import (pkgs.path + "/nixos/tests/make-test-python.nix");
|
|
eval-config = import (pkgs.path + "/nixos/lib/eval-config.nix");
|
|
});
|
|
};
|
|
}
|