Unverified Commit 37d6221c authored by K900's avatar K900 Committed by GitHub
Browse files

Merge pull request #216638 from joerdav/xc

xc: init at 0.0.154
parents 0e36aa1f 83a04de6
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -7175,6 +7175,12 @@
    github = "joepie91";
    githubId = 1663259;
  };
  joerdav = {
    email = "joe.davidson.21111@gmail.com";
    github = "joerdav";
    name = "Joe Davidson";
    githubId = 19927761;
  };
  joesalisbury = {
    email = "salisbury.joseph@gmail.com";
    github = "JosephSalisbury";
+22 −0
Original line number Diff line number Diff line
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "xc";
  version = "0.0.154";

  src = fetchFromGitHub {
    owner = "joerdav";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-GJBSPO0PffGdGAHofd1crEFXJi2xqgd8Vk2/g4ff+E4=";
  };

  vendorHash = "sha256-XDJdCh6P8ScSvxY55ExKgkgFQqmBaM9fMAjAioEQ0+s=";

  meta = with lib; {
    homepage = "https://xcfile.dev/";
    description = "Markdown defined task runner";
    license = licenses.mit;
    maintainers = with maintainers; [ joerdav ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -3499,6 +3499,8 @@ with pkgs;
  waypoint = callPackage ../applications/networking/cluster/waypoint { };
  xc = callPackage ../development/tools/xc { };
  xcodeenv = callPackage ../development/mobile/xcodeenv { };
  gomobile = callPackage ../development/mobile/gomobile { };