flake/exprs/overlay.nix

13 lines
398 B
Nix

final: prev: {
idea-ultimate-fixed = prev.callPackage ./idea-fixed.nix { };
urbackup-client = prev.urbackup-client.overrideAttrs (old: {
nativeBuildInputs = old.nativeBuildInputs or [ ] ++ [ prev.autoreconfHook ];
patches = old.patches or [ ] ++ [ ./urbackup-client-install.patch ];
configureFlags = old.configureFlags or [ ] ++ [
"--localstatedir=/var/lib"
];
});
}