lol

hayabusa: switched to tags (#437419)

authored by

Sandro and committed by
GitHub
6ff19de5 8227a08a

+14 -6
+8
maintainers/maintainer-list.nix
··· 18588 18588 githubId = 30374463; 18589 18589 name = "Michal S."; 18590 18590 }; 18591 + Notarin = { 18592 + name = "Notarin Steele"; 18593 + email = "424c414e4b@gmail.com"; 18594 + github = "Notarin"; 18595 + githubId = 25104390; 18596 + keys = [ { fingerprint = "4E15 9433 48D9 7BA7 E8B8 B0FF C38F D346 AE36 36FB"; } ]; 18597 + matrix = "@notarin:matrix.org"; 18598 + }; 18591 18599 NotAShelf = { 18592 18600 name = "NotAShelf"; 18593 18601 email = "raf@notashelf.dev";
+6 -6
pkgs/by-name/ha/hayabusa/package.nix
··· 7 7 vulkan-loader, 8 8 }: 9 9 10 - rustPlatform.buildRustPackage { 10 + rustPlatform.buildRustPackage (finalAttrs: { 11 11 pname = "hayabusa"; 12 - version = "unstable-2023-11-29"; 12 + version = "0.3.9"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "notarin"; 16 16 repo = "hayabusa"; 17 - rev = "1d6b8cfd301d60ff9f6946970b51818c036083b0"; 17 + tag = "v${finalAttrs.version}"; 18 18 hash = "sha256-w9vXC7L7IP4QLPFS1IgPOKSm7fT7W0R+NsHTdAfIupg="; 19 19 }; 20 20 ··· 43 43 meta = { 44 44 description = "Swift rust fetch program"; 45 45 homepage = "https://github.com/notarin/hayabusa"; 46 - license = lib.licenses.cc-by-nc-nd-40; 47 - maintainers = with lib.maintainers; [ ]; 46 + license = lib.licenses.agpl3Only; 47 + maintainers = with lib.maintainers; [ Notarin ]; 48 48 mainProgram = "hayabusa"; 49 49 platforms = lib.platforms.linux; 50 50 }; 51 - } 51 + })