summaryrefslogtreecommitdiff
path: root/release.nix
diff options
context:
space:
mode:
Diffstat (limited to 'release.nix')
-rw-r--r--release.nix48
1 files changed, 0 insertions, 48 deletions
diff --git a/release.nix b/release.nix
deleted file mode 100644
index 7b0524b..0000000
--- a/release.nix
+++ /dev/null
@@ -1,48 +0,0 @@
-# nix-build release.nix -A <system>
-# i.e., nix-build release.nix -A x86_64-linux
-{
- lib ? import <nixpkgs/lib>,
-}:
-
-let
- src = lib.fileset.toSource {
- root = ./.;
- fileset = lib.fileset.gitTracked ./.;
- };
-
- systems = [
- "x86_64-linux"
- "aarch64-linux"
- "x86_64-darwin"
- "aarch64-darwin"
- ];
-in
-
-lib.genAttrs systems (
- system:
-
- let
- pkgs = import <nixpkgs> {
- inherit system;
- config = { };
- overlays = [ ];
- };
-
- mkCheck =
- name: deps: script:
- pkgs.runCommand name { nativeBuildInputs = deps; } ''
- ${script}
- touch $out
- '';
-
- packages = lib.mapAttrs (lib.const lib.recurseIntoAttrs) (import ./default.nix { inherit pkgs; });
-
- checks = {
- deadnix = mkCheck "check-deadnix" [ pkgs.deadnix ] "deadnix --fail ${src}";
- nixfmt = mkCheck "check-nixfmt" [ pkgs.nixfmt-rfc-style ] "nixfmt --check ${src}";
- statix = mkCheck "check-statix" [ pkgs.statix ] "statix check ${src}";
- };
- in
-
- checks // packages // { shell = import ./shell.nix { inherit pkgs; }; }
-)