lol

grml-zsh-config: 0.12.4 -> 0.14.2 (#27961)

* grml-zsh-config: 0.12.4 -> 0.14.2

* grml-zsh-config: fix typo

authored by

Roman Volosatovs and committed by
Jörg Thalheim
2700b621 357b93e1

+8 -6
+8 -6
pkgs/shells/grml-zsh-config/default.nix
··· 1 - { stdenv, fetchurl, lib 1 + { stdenv, fetchFromGitHub, lib 2 2 , zsh, coreutils, inetutils, procps, txt2tags }: 3 3 4 4 with lib; 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "grml-zsh-config-${version}"; 8 - version = "0.12.4"; 8 + version = "0.14.2"; 9 9 10 - src = fetchurl { 11 - url = "http://deb.grml.org/pool/main/g/grml-etc-core/grml-etc-core_${version}.tar.gz"; 12 - sha256 = "1cbedc41e32787c37c2ed546355a26376dacf2ae1fab9551c9ace3e46d236b72"; 10 + src = fetchFromGitHub { 11 + owner = "grml"; 12 + repo = "grml-etc-core"; 13 + rev = "v${version}"; 14 + sha256 = "1xvv2mnkfqa657w8y4q2zrchhindngdzij9fbalcg1gggz4zdwcm"; 13 15 }; 14 16 15 17 buildInputs = [ zsh coreutils inetutils procps txt2tags ]; ··· 33 35 homepage = http://grml.org/zsh/; 34 36 license = licenses.gpl2; 35 37 platforms = platforms.linux; 36 - maintainers = [ maintainers.msteen ]; 38 + maintainers = with maintainers; [ msteen rvolosatovs ]; 37 39 }; 38 40 }