lol

zcfan: 1.3.0 -> 1.4.0 (#369327)

authored by

Peder Bergebakken Sundt and committed by
GitHub
078ba073 91dd6f53

+9 -6
+9 -6
pkgs/by-name/zc/zcfan/package.nix
··· 7 7 # Testing this requires a Thinkpad or the presence of /proc/acpi/ibm/fan 8 8 stdenv.mkDerivation (finalAttrs: { 9 9 pname = "zcfan"; 10 - version = "1.3.0"; 10 + version = "1.4.0"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "cdown"; 14 14 repo = "zcfan"; 15 15 rev = finalAttrs.version; 16 - hash = "sha256-zpYQEHXt8LBNX+luM4YxP0dKH+hb2c8Z0BEeGP09oZo="; 16 + hash = "sha256-/q9jDqjG4g211CTb4ahagpxux2BsZWTEyoAY8kRRTB8="; 17 17 }; 18 18 19 19 postPatch = '' ··· 31 31 runHook postInstallCheck 32 32 ''; 33 33 34 - meta = with lib; { 34 + meta = { 35 35 description = "Zero-configuration fan daemon for ThinkPads"; 36 36 mainProgram = "zcfan"; 37 37 homepage = "https://github.com/cdown/zcfan"; 38 38 changelog = "https://github.com/cdown/zcfan/tags/${finalAttrs.version}"; 39 - license = licenses.mit; 40 - maintainers = with maintainers; [ kashw2 ]; 41 - platforms = platforms.linux; 39 + license = lib.licenses.mit; 40 + maintainers = with lib.maintainers; [ 41 + luftmensch-luftmensch 42 + kashw2 43 + ]; 44 + platforms = lib.platforms.linux; 42 45 }; 43 46 })