Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

miniflux: 2.0.13 -> 2.0.14

authored by

Roman Volosatovs and committed by
Vladyslav M
1b3affcb da61e66f

+82 -25
+6 -9
pkgs/servers/miniflux/default.nix
··· 1 - { stdenv 2 - , buildGoPackage 3 - , fetchFromGitHub 4 - }: 5 6 buildGoPackage rec { 7 pname = "miniflux"; 8 - version = "2.0.13"; 9 10 goPackagePath = "miniflux.app"; 11 12 src = fetchFromGitHub { 13 owner = "miniflux"; 14 repo = "miniflux"; 15 - rev = "refs/tags/${version}"; 16 - sha256 = "16c9jszrz3153kr0xyj7na09hpqvnjsrmsbic7qkp5a9aa839b9s"; 17 }; 18 - 19 goDeps = ./deps.nix; 20 21 doCheck = true; ··· 32 description = "Minimalist and opinionated feed reader"; 33 homepage = https://miniflux.app/; 34 license = licenses.asl20; 35 - maintainers = with maintainers; [ benpye ]; 36 }; 37 } 38
··· 1 + { stdenv , buildGoPackage , fetchFromGitHub }: 2 3 buildGoPackage rec { 4 pname = "miniflux"; 5 + version = "2.0.14"; 6 7 goPackagePath = "miniflux.app"; 8 9 src = fetchFromGitHub { 10 owner = "miniflux"; 11 repo = "miniflux"; 12 + rev = version; 13 + sha256 = "1wd52zk7i07k0b5rlwqd4qszq42shdb4ss8871jqlf9zlbq85a0v"; 14 }; 15 + 16 goDeps = ./deps.nix; 17 18 doCheck = true; ··· 29 description = "Minimalist and opinionated feed reader"; 30 homepage = https://miniflux.app/; 31 license = licenses.asl20; 32 + maintainers = with maintainers; [ rvolosatovs benpye ]; 33 }; 34 } 35
+76 -16
pkgs/servers/miniflux/deps.nix
··· 6 fetch = { 7 type = "git"; 8 url = "https://github.com/PuerkitoBio/goquery"; 9 - rev = "v1.4.1"; 10 - sha256 = "11010z9ask21r0dskvm2pbh3z8951bnpcqg8aqa213if4h34gaa2"; 11 }; 12 } 13 ··· 22 } 23 24 { 25 goPackagePath = "github.com/golang/protobuf"; 26 fetch = { 27 type = "git"; ··· 62 } 63 64 { 65 - goPackagePath = "github.com/tdewolff/minify"; 66 fetch = { 67 type = "git"; 68 url = "https://github.com/tdewolff/minify"; 69 - rev = "v2.3.5"; 70 - sha256 = "0x67kgjhc6mfzjhr4xmw0j3qapzhkgwwahvv5b44rb449ml2qx5m"; 71 }; 72 } 73 74 { 75 - goPackagePath = "github.com/tdewolff/parse"; 76 fetch = { 77 type = "git"; 78 url = "https://github.com/tdewolff/parse"; 79 - rev = "v2.3.3"; 80 - sha256 = "190y2jykp8qyp6y58ky1v1fvmaqjnrsr1ksbqrrspf1gpjy69i94"; 81 }; 82 } 83 ··· 86 fetch = { 87 type = "git"; 88 url = "https://go.googlesource.com/crypto"; 89 - rev = "614d502a4dac"; 90 - sha256 = "1rcyvsl8b8pk7h8lwl0fpiflrx8zs121wi5490ln0qnvkk8d4bwy"; 91 }; 92 } 93 ··· 96 fetch = { 97 type = "git"; 98 url = "https://go.googlesource.com/net"; 99 - rev = "8a410e7b638d"; 100 - sha256 = "0hp0l8f6fir5gmgrjq0mhh5ikc0rlrm72774228800kfwqjrxxny"; 101 }; 102 } 103 ··· 106 fetch = { 107 type = "git"; 108 url = "https://go.googlesource.com/oauth2"; 109 - rev = "d2e6202438be"; 110 - sha256 = "0wbn75fd10485nb93bm4kqldqifdim5xqy4v7r5sdvimvf3fyhn7"; 111 }; 112 } 113 ··· 126 fetch = { 127 type = "git"; 128 url = "https://go.googlesource.com/sys"; 129 - rev = "4910a1d54f87"; 130 - sha256 = "0p2pp6mny34gjcvylx3ddzdaxn7hv008hppsr11w1bvyzj7s27by"; 131 }; 132 } 133
··· 6 fetch = { 7 type = "git"; 8 url = "https://github.com/PuerkitoBio/goquery"; 9 + rev = "v1.5.0"; 10 + sha256 = "1fqf4rs66wy02nxz6w4mvs2qawf2j8srz17i294v64y8gvxisp56"; 11 }; 12 } 13 ··· 22 } 23 24 { 25 + goPackagePath = "github.com/cheekybits/is"; 26 + fetch = { 27 + type = "git"; 28 + url = "https://github.com/cheekybits/is"; 29 + rev = "68e9c0620927"; 30 + sha256 = "1mkbyzhwq3rby832ikq00nxv3jnckxsm3949wkxd8ya9js2jmg4d"; 31 + }; 32 + } 33 + 34 + { 35 + goPackagePath = "github.com/dustin/go-humanize"; 36 + fetch = { 37 + type = "git"; 38 + url = "https://github.com/dustin/go-humanize"; 39 + rev = "v1.0.0"; 40 + sha256 = "1kqf1kavdyvjk7f8kx62pnm7fbypn9z1vbf8v2qdh3y7z7a0cbl3"; 41 + }; 42 + } 43 + 44 + { 45 + goPackagePath = "github.com/fsnotify/fsnotify"; 46 + fetch = { 47 + type = "git"; 48 + url = "https://github.com/fsnotify/fsnotify"; 49 + rev = "v1.4.7"; 50 + sha256 = "07va9crci0ijlivbb7q57d2rz9h27zgn2fsm60spjsqpdbvyrx4g"; 51 + }; 52 + } 53 + 54 + { 55 goPackagePath = "github.com/golang/protobuf"; 56 fetch = { 57 type = "git"; ··· 92 } 93 94 { 95 + goPackagePath = "github.com/matryer/try"; 96 + fetch = { 97 + type = "git"; 98 + url = "https://github.com/matryer/try"; 99 + rev = "9ac251b645a2"; 100 + sha256 = "19fnqmpl3p54vmxgm1hmqvdc87brqx754wf3cdhq1bj04fcbb5h9"; 101 + }; 102 + } 103 + 104 + { 105 + goPackagePath = "github.com/spf13/pflag"; 106 + fetch = { 107 + type = "git"; 108 + url = "https://github.com/spf13/pflag"; 109 + rev = "v1.0.3"; 110 + sha256 = "1cj3cjm7d3zk0mf1xdybh0jywkbbw7a6yr3y22x9sis31scprswd"; 111 + }; 112 + } 113 + 114 + { 115 + goPackagePath = "github.com/tdewolff/minify/v2"; 116 fetch = { 117 type = "git"; 118 url = "https://github.com/tdewolff/minify"; 119 + rev = "v2.3.8"; 120 + sha256 = "1f179di7nlmybmgmm7sadqi60zwfizlbbj0ws5k8gcswkwwr7zzx"; 121 }; 122 } 123 124 { 125 + goPackagePath = "github.com/tdewolff/parse/v2"; 126 fetch = { 127 type = "git"; 128 url = "https://github.com/tdewolff/parse"; 129 + rev = "v2.3.5"; 130 + sha256 = "05w859s31dx6525wrjryby601z9c0xpncilznk6shgqygpxda6cz"; 131 + }; 132 + } 133 + 134 + { 135 + goPackagePath = "github.com/tdewolff/test"; 136 + fetch = { 137 + type = "git"; 138 + url = "https://github.com/tdewolff/test"; 139 + rev = "v1.0.0"; 140 + sha256 = "10vyp4bhanzg3yl9k8zqfdrxpsmx8yc53xv4lqxfymd7jjyqgssj"; 141 }; 142 } 143 ··· 146 fetch = { 147 type = "git"; 148 url = "https://go.googlesource.com/crypto"; 149 + rev = "505ab145d0a9"; 150 + sha256 = "1vbsvcvmjz6c00p5vf8ls533p52fx2y3gy6v4k5qrdlzl4wf0i5s"; 151 }; 152 } 153 ··· 156 fetch = { 157 type = "git"; 158 url = "https://go.googlesource.com/net"; 159 + rev = "610586996380"; 160 + sha256 = "1sqwmvf70rq1j65lv5jzyiy7gd53l37dxlnjf2xj6p2i4fcwkk4z"; 161 }; 162 } 163 ··· 166 fetch = { 167 type = "git"; 168 url = "https://go.googlesource.com/oauth2"; 169 + rev = "d668ce993890"; 170 + sha256 = "17m8d02fazil0dwvk33vpwvsb91asgbmmpqy05751csrfqhhdqna"; 171 }; 172 } 173 ··· 186 fetch = { 187 type = "git"; 188 url = "https://go.googlesource.com/sys"; 189 + rev = "ad97f365e150"; 190 + sha256 = "0s0wymq1zv5ffrnngnzk9qk83sscq3wazm17rrqb96brs2r047mk"; 191 }; 192 } 193