mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: network-manager-vpnc: Update to 1.2.8.
* gnu/packages/gnome.scm (network-manager-vpnc): Update to 1.2.8. [configure-flags]: Remove "--with-libnm-glib=no". Add "--with-gtk4=yes". [phases]: Delete trailing #t. [native-inputs]: Add gilb:bin. [inputs]: Add gtk and pango-next.
This commit is contained in:
parent
6c789555a5
commit
5f165887d4
1 changed files with 10 additions and 9 deletions
|
@ -8308,7 +8308,7 @@ (define-public network-manager-openvpn
|
|||
(define-public network-manager-vpnc
|
||||
(package
|
||||
(name "network-manager-vpnc")
|
||||
(version "1.2.6")
|
||||
(version "1.2.8")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
|
@ -8317,14 +8317,12 @@ (define-public network-manager-vpnc
|
|||
"/NetworkManager-vpnc-" version ".tar.xz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1js5lwcsqws4klgypfxl4ikmakv7v7xgddij1fj6b0y0qicx0kyy"))))
|
||||
"1k7vkalslzmz8zvfy76k7z10b9krm7da917gwzyw7zf8afm32pnn"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags '("--enable-absolute-paths"
|
||||
"--localstatedir=/var"
|
||||
;; libnm-glib has been removed from network-manager
|
||||
;; 1de8383ad9fdfc8f552117e5d109bdfa7005634b
|
||||
"--with-libnm-glib=no")
|
||||
"--with-gtk4=yes")
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(add-after 'configure 'patch-path
|
||||
|
@ -8336,17 +8334,20 @@ (define-public network-manager-vpnc
|
|||
(("\"/usr/local/sbin/vpnc\"") pretty-ovpn)
|
||||
(("\"/usr/sbin/vpnc\"") pretty-ovpn)
|
||||
(("\"/sbin/vpnc\"") pretty-ovpn)
|
||||
(("/sbin/modprobe") modprobe)))
|
||||
#t)))))
|
||||
(("/sbin/modprobe") modprobe))))))))
|
||||
(native-inputs
|
||||
(list pkg-config intltool))
|
||||
(list `(,glib "bin")
|
||||
intltool
|
||||
pkg-config))
|
||||
(inputs
|
||||
(list gtk+
|
||||
gtk
|
||||
kmod
|
||||
vpnc
|
||||
network-manager
|
||||
libnma
|
||||
libsecret))
|
||||
libsecret
|
||||
pango-next)) ;TODO: remove after it's the default
|
||||
(home-page "https://wiki.gnome.org/Projects/NetworkManager/VPN")
|
||||
(synopsis "VPNC plug-in for NetworkManager")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue