lol

Merge pull request #205751 from azahi/linux_logo

linux_logo: 6.0 -> 6.01

authored by

Bobby Rong and committed by
GitHub
8c4bca74 96b8fab0

+4 -9
+4 -9
pkgs/tools/misc/linux-logo/default.nix
··· 3 3 , fetchFromGitHub 4 4 , gettext 5 5 , which 6 - , nix-update-script 7 6 }: 8 7 9 8 stdenv.mkDerivation rec { 10 9 pname = "linux_logo"; 11 - version = "6.0"; 10 + version = "6.01"; 12 11 13 12 src = fetchFromGitHub { 14 13 owner = "deater"; 15 14 repo = pname; 16 - rev = version; 17 - sha256 = "sha256-q8QznEgnALJS//l7XXHZlq07pI2jCCm2USEU96rO8N0="; 15 + rev = "v${version}"; 16 + hash = "sha256-yBAxPwgKyFFIX0wuG7oG+FbEDpA5cPwyyJgWrFErJ7I="; 18 17 }; 19 18 20 19 nativeBuildInputs = [ gettext which ]; 21 20 22 - passthru.updateScript = nix-update-script { 23 - attrPath = pname; 24 - }; 25 - 26 21 meta = with lib; { 27 22 description = "Prints an ASCII logo and some system info"; 28 23 homepage = "http://www.deater.net/weave/vmwprod/linux_logo"; 29 - changelog = "https://github.com/deater/linux_logo/blob/${version}/CHANGES_IN_${version}"; 24 + changelog = "https://github.com/deater/linux_logo/blob/${src.rev}/CHANGES"; 30 25 license = licenses.gpl2Plus; 31 26 maintainers = with maintainers; [ azahi ]; 32 27 platforms = platforms.linux;