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