this repo has no description

feat: pass owner and repo via derviationArgs

+14
+14
fetcher.nix
··· 90 90 revWithTag = if tag != null then "refs%2Ftags%2F${tag}" else rev; 91 91 92 92 fetcherArgs = 93 + _: 93 94 passthruAttrs 94 95 // ( 95 96 if useFetchGit then ··· 105 106 ; 106 107 url = baseUrl; 107 108 inherit passthru; 109 + derivationArgs = { 110 + inherit 111 + owner 112 + repo 113 + ; 114 + }; 108 115 } 109 116 else 110 117 { 111 118 url = "${baseUrl}/archive/${revWithTag}"; 112 119 extension = "tar.gz"; 120 + 121 + derivationArgs = { 122 + inherit 123 + owner 124 + repo 125 + ; 126 + }; 113 127 114 128 passthru = { 115 129 gitRepoUrl = baseUrl;