home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit bbbd09a2e4750ba2b48be60f043431b47e40b6fa
parent 2990ea5f5bd6fa66561c41f67f60514be4ca851b
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Wed,  2 Dec 2020 18:32:25 +0100

flake.nix: add some packages

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mflake.nix | 29+++++++++++++++++++++++++++++
1 file changed, 29 insertions(+), 0 deletions(-)

diff --git a/flake.nix b/flake.nix @@ -119,6 +119,35 @@ in { ape = pkgs.callPackage ./pkgs/ape { }; + nr = pkgs.callPackage ./pkgs/nr { }; + ram = pkgs.callPackage ./pkgs/ram { }; + systemd-email = pkgs.callPackage ./pkgs/systemd-email { }; + + # Tekton + inherit (pkgs.callPackage ./pkgs/tkn { }) + tkn_0_11 + tkn_0_12 + tkn_0_13 + tkn_0_14 + tkn + ; + # OpenShift + inherit (pkgs.callPackage ./pkgs/oc { }) + oc_4_1 + oc_4_2 + oc_4_3 + oc_4_4 + oc_4_5 + oc_4_6 + oc + ; + inherit (pkgs.callPackage ./pkgs/openshift-install { }) + openshift-install_4_3 + openshift-install_4_4 + openshift-install_4_5 + openshift-install_4_6 + openshift-install + ; }); # defaultPackage.x86_64-linux = self.packages.x86_64-linux.hello;