Unverified Commit 6ff19de5 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

hayabusa: switched to tags (#437419)

parents 8227a08a 9c1b34af
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -18588,6 +18588,14 @@
    githubId = 30374463;
    name = "Michal S.";
  };
  Notarin = {
    name = "Notarin Steele";
    email = "424c414e4b@gmail.com";
    github = "Notarin";
    githubId = 25104390;
    keys = [ { fingerprint = "4E15 9433 48D9 7BA7 E8B8  B0FF C38F D346 AE36 36FB"; } ];
    matrix = "@notarin:matrix.org";
  };
  NotAShelf = {
    name = "NotAShelf";
    email = "raf@notashelf.dev";
+6 −6
Original line number Diff line number Diff line
@@ -7,14 +7,14 @@
  vulkan-loader,
}:

rustPlatform.buildRustPackage {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "hayabusa";
  version = "unstable-2023-11-29";
  version = "0.3.9";

  src = fetchFromGitHub {
    owner = "notarin";
    repo = "hayabusa";
    rev = "1d6b8cfd301d60ff9f6946970b51818c036083b0";
    tag = "v${finalAttrs.version}";
    hash = "sha256-w9vXC7L7IP4QLPFS1IgPOKSm7fT7W0R+NsHTdAfIupg=";
  };

@@ -43,9 +43,9 @@ rustPlatform.buildRustPackage {
  meta = {
    description = "Swift rust fetch program";
    homepage = "https://github.com/notarin/hayabusa";
    license = lib.licenses.cc-by-nc-nd-40;
    maintainers = with lib.maintainers; [ ];
    license = lib.licenses.agpl3Only;
    maintainers = with lib.maintainers; [ Notarin ];
    mainProgram = "hayabusa";
    platforms = lib.platforms.linux;
  };
}
})