home

My NixOS systems configurations.
Log | Files | Refs | LICENSE

default.nix (551B)


      1 { stdenv, lib, buildGoModule, git, fetchFromGitHub }:
      2 
      3 buildGoModule rec {
      4   name = "operator-tool-${version}";
      5   version = "0.0.3";
      6   rev = "v${version}";
      7 
      8   src = fetchFromGitHub {
      9     inherit rev;
     10     owner = "openshift-pipelines";
     11     repo = "operator-tooling";
     12     sha256 = "sha256-S2EKdv/Y3ha+wMMK90jr5RPq3+2IJyX63c/xEEvrxrE=";
     13   };
     14   vendorHash = null;
     15 
     16   meta = {
     17     description = "Tooling for managing operator remote payload";
     18     homepage = https://github.com/openshift-pipelines/operator-tooling;
     19     license = lib.licenses.asl20;
     20   };
     21 }