Merge pull request #301466 from picnoir/pic/ppd-21

power-profiles-daemon: 0.20 -> 0.21

authored by Félix and committed by GitHub 5fc51da8 d316b822

+9 -3
+9 -3
pkgs/os-specific/linux/power-profiles-daemon/default.nix
··· 1 1 { stdenv 2 2 , lib 3 + , bash-completion 3 4 , pkg-config 4 5 , meson 5 6 , mesonEmulatorHook ··· 25 26 26 27 stdenv.mkDerivation rec { 27 28 pname = "power-profiles-daemon"; 28 - version = "0.20"; 29 + version = "0.21"; 29 30 30 31 outputs = [ "out" "devdoc" ]; 31 32 ··· 34 35 owner = "upower"; 35 36 repo = "power-profiles-daemon"; 36 37 rev = version; 37 - sha256 = "sha256-8wSRPR/1ELcsZ9K3LvSNlPcJvxRhb/LRjTIxKtdQlCA="; 38 + sha256 = "sha256-5JbMbz38SeNEkVKFjJLxeUHiOrx+QCaK/vXgRPbzwzY="; 38 39 }; 39 40 40 41 nativeBuildInputs = [ ··· 53 54 pygobject3 54 55 dbus-python 55 56 python-dbusmock 57 + argparse-manpage 58 + shtab 56 59 ])) 57 60 ] ++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [ 58 61 mesonEmulatorHook 59 62 ]; 60 63 61 64 buildInputs = [ 65 + bash-completion 62 66 libgudev 63 67 systemd 64 68 upower ··· 84 88 mesonFlags = [ 85 89 "-Dsystemdsystemunitdir=${placeholder "out"}/lib/systemd/system" 86 90 "-Dgtk_doc=true" 91 + "-Dpylint=disabled" 92 + "-Dzshcomp=${placeholder "out"}/share/zsh/site-functions" 87 93 "-Dtests=${lib.boolToString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)}" 88 94 ]; 89 95 ··· 112 118 mainProgram = "powerprofilesctl"; 113 119 platforms = platforms.linux; 114 120 license = licenses.gpl3Plus; 115 - maintainers = with maintainers; [ mvnetbiz ]; 121 + maintainers = with maintainers; [ mvnetbiz picnoir ]; 116 122 }; 117 123 }