nyxexprs/pkgs/alejandra-custom/package.nix
NotAShelf 07c63fe9a6
Some checks failed
Checks / check (NIXPKGS_ALLOW_INSECURE=1 nix flake check --accept-flake-config --impure) (push) Has been cancelled
Checks / check (nix run .#alejandra-custom -- -c . -e ./npins) (push) Has been cancelled
Checks / build (push) Has been cancelled
alejandra-custom: disable tests until I can be arsed ot fix them
2025-04-16 06:09:21 +03:00

21 lines
411 B
Nix

{
lib,
alejandra,
...
}:
alejandra.overrideAttrs (prev: {
pname = "alejandra-custom";
version = "0-unstable-2024-07-21";
patches =
(prev.patches or [])
++ [./0001-no-ads.patch];
doCheck = false;
meta = {
description = "Custom build of Alejandra without ads & spaces around lists and attrsets";
mainProgram = "alejandra";
maintainers = [lib.maintainers.NotAShelf];
};
})