summaryrefslogtreecommitdiff
path: root/keepassxc_my.nix
blob: f2b2e9f2775ef5282119aecb9fbdef4fd7677e7e (plain)
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 = [ ];
    });
}