1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
{ inputs }: self: super: { keepassxc = with super; keepassxc.overrideAttrs (oldAttrs: rec { version = "git"; src = fetchGit { url = "https://github.com/keepassxreboot/keepassxc"; ref = "develop"; # rev = "0207e0fe9f688dfa3c80117f9002031eff68e624"; }; buildInputs = oldAttrs.buildInputs ++ [ keyutils ]; patches = [ ]; }); }