chore: bump for positioning PR
All checks were successful
Nix Build / nix build (push) Successful in 2m39s

This commit is contained in:
atagen 2025-08-19 15:40:59 +10:00
parent 51c0486748
commit 0c1a104cea
3 changed files with 112 additions and 210 deletions

View file

@ -3,7 +3,10 @@
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
systems.url = "github:nix-systems/default-linux";
naersk.url = "github:nix-community/naersk";
niri-flake.url = "github:sodiboo/niri-flake";
niri = {
flake = false;
url = "github:YaLTeR/niri";
};
};
outputs =
@ -39,7 +42,7 @@
RUST_SRC_DIR = "${pkgs.rustPlatform.rustLibSrc}";
RUST_LOG = "debug";
shellHook = ''
cp --no-preserve=mode,ownership -R ${niri-flake.inputs.niri-unstable} niri/
cp --no-preserve=mode,ownership -R ${niri} niri/
'';
};
});
@ -48,14 +51,14 @@
unstable = deps.${pkgs.system}.naersk.buildPackage {
src = ./.;
preConfigure = ''
cp -R ${niri-flake.inputs.niri-unstable} niri/
cp -R ${niri} niri/
'';
meta.mainProgram = "niri-tag";
};
stable = deps.${pkgs.system}.naersk.buildPackage {
src = ./.;
preBuild = ''
cp -R ${niri-flake.inputs.niri-stable} niri/
cp -R ${niri} niri/
'';
meta.mainProgram = "niri-tag";
};