File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 22 lib ,
33 buildGoModule ,
44 fetchFromGitHub ,
5+ nix-update-script ,
56} :
67
7- buildGoModule rec {
8+ buildGoModule ( finalAttrs : {
89 pname = "cliqr" ;
910 version = "0.1.26" ;
1011
1112 src = fetchFromGitHub {
1213 owner = "paepckehh" ;
1314 repo = "cliqr" ;
14- tag = "v${ version } " ;
15+ tag = "v${ finalAttrs . version } " ;
1516 hash = "sha256-JM5sWVby8dSFz2YtNXgU9z5fc6EI5nnxmpQN/71kdjI=" ;
1617 } ;
1718
@@ -22,12 +23,14 @@ buildGoModule rec {
2223 "-w"
2324 ] ;
2425
26+ passthru . updateScript = nix-update-script { } ;
27+
2528 meta = {
26- changelog = "https://github.com/paepckehh/cliqr/releases/tag/v${ version } " ;
29+ changelog = "https://github.com/paepckehh/cliqr/releases/tag/v${ finalAttrs . version } " ;
2730 homepage = "https://paepcke.de/cliqr" ;
2831 description = "Transfer, share data & secrets via console qr codes" ;
2932 license = lib . licenses . bsd3 ;
3033 mainProgram = "cliqr" ;
3134 maintainers = with lib . maintainers ; [ paepcke ] ;
3235 } ;
33- }
36+ } )
You can’t perform that action at this time.
0 commit comments