diff options
author | lassulus <lass@blue.r> | 2018-10-09 11:30:02 +0200 |
---|---|---|
committer | lassulus <lass@blue.r> | 2018-10-09 11:30:02 +0200 |
commit | 5ac5ee66bd006cd6161a05c35a2df088abe0616b (patch) | |
tree | bb34b0506da2fca7e7eb19eb7e3469e752e2e415 /tv/5pkgs/default.nix | |
parent | 1f23af4309d077a4a98c2ad8539db12d062842a5 (diff) | |
parent | 29d4f4357afc0965c73f7ed33c3f03880e8e84e2 (diff) |
Merge branch '18.09'
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}; + } |