pantheon.switchboard-plug-security-privacy: 7.0.0 -> 7.1.0

https://github.com/elementary/switchboard-plug-security-privacy/releases/tag/7.1.0
This commit is contained in:
Bobby Rong 2023-08-02 21:08:26 +08:00
parent 2dd5cccb11
commit 0d1cc078c9
No known key found for this signature in database

View file

@ -3,7 +3,6 @@
, fetchFromGitHub
, nix-update-script
, meson
, python3
, ninja
, pkg-config
, vala
@ -21,20 +20,19 @@
stdenv.mkDerivation rec {
pname = "switchboard-plug-security-privacy";
version = "7.0.0";
version = "7.1.0";
src = fetchFromGitHub {
owner = "elementary";
repo = pname;
rev = version;
sha256 = "sha256-J3lUyLNyxlleD2jklXB2jMRvLY6WG5iccA2lIaJL3d4=";
sha256 = "sha256-2eQ89FpEMF85UmqVu9FJUvSlaVGmsrRBnhAW7oUiUqg=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
python3
vala
];
@ -51,11 +49,6 @@ stdenv.mkDerivation rec {
zeitgeist
];
postPatch = ''
chmod +x meson/post_install.py
patchShebangs meson/post_install.py
'';
passthru = {
updateScript = nix-update-script { };
};