diff options
author | tv <tv@krebsco.de> | 2018-10-06 23:48:20 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2018-10-06 23:48:20 +0200 |
commit | d7999df97cc7067b75e176ab274c560c950c0f35 (patch) | |
tree | 156d15ee5a3d48f46f206676d3b6fe88eba479f6 /tv/5pkgs/default.nix | |
parent | 2fdb6069470d30ab708b1897fbda78b1b8ac7605 (diff) |
tv: add 18.09 compatibility
Diffstat (limited to 'tv/5pkgs/default.nix')
-rw-r--r-- | tv/5pkgs/default.nix | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tv/5pkgs/default.nix b/tv/5pkgs/default.nix index 82474ade5..c5c800b55 100644 --- a/tv/5pkgs/default.nix +++ b/tv/5pkgs/default.nix @@ -33,4 +33,16 @@ foldl' mergeAttrs {} ''; gnupg = self.gnupg22; + + pass = { + "18.03" = + self.callPackage ./compat/18.03/pass { + pass-otp = self.callPackage ./compat/18.03/pass-otp {}; + }; + "18.09" = + super.pass.withExtensions (ext: [ + ext.pass-otp + ]); + }.${versions.majorMinor nixpkgsVersion}; + } |