lol

ebuild-mode: 1.67 -> 1.70 (#300551)

authored by

Anderson Torres and committed by
GitHub
60f5767c def8887b

+13 -8
+13 -8
pkgs/applications/editors/emacs/elisp-packages/manual-packages/ebuild-mode/default.nix
··· 1 - { lib, melpaBuild, fetchurl, writeText }: 1 + { 2 + lib, 3 + melpaBuild, 4 + fetchzip, 5 + writeText, 6 + }: 2 7 3 8 melpaBuild rec { 4 9 pname = "ebuild-mode"; 5 - version = "1.67"; 10 + version = "1.70"; 6 11 7 - src = fetchurl { 8 - url = "https://dev.gentoo.org/~ulm/emacs/ebuild-mode-${version}.tar.xz"; 9 - hash = "sha256-5qxHpu1BLtI8LFnL/sAoqmo80zeyElxIdFtAsfMefUE="; 12 + src = fetchzip { 13 + url = "https://gitweb.gentoo.org/proj/ebuild-mode.git/snapshot/ebuild-mode-${version}.tar.bz2"; 14 + hash = "sha256-dOm3xJMFLelwcImIwckeQHx1GqV9PB+I45QA9UT1nCM="; 10 15 }; 11 16 12 17 # not used but needs to be set; why? 13 - commit = "e7b45096283ac8836f208babddfd1ea1c1d1d1d"; 18 + commit = "a643f177b58aa8869f2f24814e990320aa4f0f96"; 14 19 15 20 recipe = writeText "recipe" '' 16 21 (ebuild-mode 17 - :url "https://anongit.gentoo.org/git/proj/ebuild-mode.git" 18 - :fetcher git) 22 + :url "https://gitweb.gentoo.org/proj/ebuild-mode.git" 23 + :fetcher git) 19 24 ''; 20 25 21 26 meta = {