this repo has no description

feat: pass owner and repo via derviationArgs

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