M flake.nix => flake.nix +2 -1
@@ 86,6 86,7 @@
final = pkgs.extend overlay;
output = overlay final pkgs;
output' = nixpkgs.lib.filterAttrs (name: pkg: !pkg.meta.unsupported) output;
- in output');
+ in
+ output');
};
}
M packages/nix-pijul.nix => packages/nix-pijul.nix +9 -6
@@ 17,9 17,12 @@
"f{<a-i>{sshallow<ret><a-i>pd"
];
in
-nix.overrideAttrs (self: {
- postPatch = self.postPatch or "" + ''
- ${buildPackages.kakoune}/bin/kak -ui dummy -f ${lib.escapeShellArg editScript} \
- src/libexpr/flake/flakeref.cc
- '';
-})
+ nix.overrideAttrs (self: {
+ postPatch =
+ self.postPatch
+ or ""
+ + ''
+ ${buildPackages.kakoune}/bin/kak -ui dummy -f ${lib.escapeShellArg editScript} \
+ src/libexpr/flake/flakeref.cc
+ '';
+ })