~dblsaiko/nix-extras

af241b93bf36566a74036047a8748e99c575216d — Marco Rebhan 8 months ago 95c02c7
Format
2 files changed, 11 insertions(+), 7 deletions(-)

M flake.nix
M packages/nix-pijul.nix
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
      '';
  })