2021-05-13 08:51:44 +02:00
|
|
|
{
|
|
|
|
inputs = {
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
|
|
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
|
|
|
|
|
|
nix-pre-commit-hooks.url = "github:cachix/pre-commit-hooks.nix/master";
|
|
|
|
nix-pre-commit-hooks.inputs.flake-utils.follows = "flake-utils";
|
|
|
|
nix-pre-commit-hooks.inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
|
|
|
|
|
|
|
outputs = { self, flake-utils, nixpkgs, nix-pre-commit-hooks }: {
|
|
|
|
overlay = final: prev:
|
|
|
|
let
|
|
|
|
inherit (prev) callPackage;
|
|
|
|
callPythonPackage = prev.python3Packages.callPackage;
|
|
|
|
in
|
|
|
|
{
|
2021-05-13 08:56:01 +02:00
|
|
|
VisiCut = callPackage ./VisiCut { };
|
2021-05-13 08:51:44 +02:00
|
|
|
};
|
|
|
|
} // flake-utils.lib.eachDefaultSystem (system:
|
|
|
|
let
|
|
|
|
pkgs = import nixpkgs { inherit system; overlays = [ self.overlay ]; };
|
|
|
|
lib = pkgs.lib;
|
|
|
|
in
|
|
|
|
rec {
|
|
|
|
checks = {
|
|
|
|
pre-commit-check = nix-pre-commit-hooks.lib.${system}.run {
|
|
|
|
src = ./.;
|
|
|
|
hooks = {
|
|
|
|
nixpkgs-fmt.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
devShell = pkgs.mkShell {
|
|
|
|
shellHook = checks.pre-commit-check.shellHook;
|
|
|
|
};
|
|
|
|
|
|
|
|
packages = lib.filterAttrs
|
|
|
|
(n: v: lib.elem system v.meta.platforms)
|
|
|
|
{
|
2021-05-13 08:56:01 +02:00
|
|
|
inherit (pkgs)
|
|
|
|
VisiCut;
|
2021-05-13 08:51:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# My hydra only has x86_64-linux builders
|
|
|
|
hydraJobs =
|
|
|
|
if lib.elem system [ "x86_64-linux" ]
|
|
|
|
then packages
|
|
|
|
else { };
|
|
|
|
});
|
|
|
|
}
|