gnu: flatpak: Fix indentation.
* gnu/packages/package-management.scm (flatpak): Fix indentation.master
parent
6693cdd6b7
commit
122db9a6ca
|
@ -990,47 +990,48 @@ the bootloader configuration.")
|
||||||
|
|
||||||
(define-public flatpak
|
(define-public flatpak
|
||||||
(package
|
(package
|
||||||
(name "flatpak")
|
(name "flatpak")
|
||||||
(version "1.1.0")
|
(version "1.1.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/flatpak/flatpak/releases/download/"
|
(uri (string-append "https://github.com/flatpak/flatpak/releases/download/"
|
||||||
version "/flatpak-" version ".tar.xz"))
|
version "/flatpak-" version ".tar.xz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0bkjwh49kajyd78vdh0g9arb352a7rccaifas9zxa78phhja2v2p"))))
|
"0bkjwh49kajyd78vdh0g9arb352a7rccaifas9zxa78phhja2v2p"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ;; Tests fail due to trying to create files where it can't.
|
'(#:tests? #f ;; Tests fail due to trying to create files where it can't.
|
||||||
#:configure-flags (list
|
#:configure-flags (list
|
||||||
"--enable-documentation=no" ;; FIXME
|
"--enable-documentation=no" ;; FIXME
|
||||||
"--enable-system-helper=no"
|
"--enable-system-helper=no"
|
||||||
"--localstatedir=/var"
|
"--localstatedir=/var"
|
||||||
(string-append "--with-system-bubblewrap=" (assoc-ref
|
(string-append "--with-system-bubblewrap="
|
||||||
%build-inputs "bubblewrap") "/bin/bwrap"))))
|
(assoc-ref %build-inputs "bubblewrap")
|
||||||
(native-inputs `(("bison" ,bison)
|
"/bin/bwrap"))))
|
||||||
("gettext" ,gnu-gettext)
|
(native-inputs `(("bison" ,bison)
|
||||||
("glib:bin" ,glib "bin") ; for glib-mkenums and gdbus-codegen
|
("gettext" ,gnu-gettext)
|
||||||
("gobject-introspection" ,gobject-introspection)
|
("glib:bin" ,glib "bin") ; for glib-mkenums + gdbus-codegen
|
||||||
("libcap" ,libcap)
|
("gobject-introspection" ,gobject-introspection)
|
||||||
("pkg-config" ,pkg-config)))
|
("libcap" ,libcap)
|
||||||
(inputs `(("appstream-glib" ,appstream-glib)
|
("pkg-config" ,pkg-config)))
|
||||||
("bubblewrap" ,bubblewrap)
|
(inputs `(("appstream-glib" ,appstream-glib)
|
||||||
("gdk-pixbuf" ,gdk-pixbuf)
|
("bubblewrap" ,bubblewrap)
|
||||||
("gpgme" ,gpgme)
|
("gdk-pixbuf" ,gdk-pixbuf)
|
||||||
("json-glib" ,json-glib)
|
("gpgme" ,gpgme)
|
||||||
("libarchive" ,libarchive)
|
("json-glib" ,json-glib)
|
||||||
("libostree" ,libostree)
|
("libarchive" ,libarchive)
|
||||||
("libseccomp" ,libseccomp)
|
("libostree" ,libostree)
|
||||||
("libsoup" ,libsoup)
|
("libseccomp" ,libseccomp)
|
||||||
("libxau" ,libxau)
|
("libsoup" ,libsoup)
|
||||||
("libxml2" ,libxml2)
|
("libxau" ,libxau)
|
||||||
("nettle" ,nettle)
|
("libxml2" ,libxml2)
|
||||||
("util-linux" ,util-linux)))
|
("nettle" ,nettle)
|
||||||
(home-page "https://flatpak.org")
|
("util-linux" ,util-linux)))
|
||||||
(synopsis "System for building, distributing, and running sandboxed desktop
|
(home-page "https://flatpak.org")
|
||||||
|
(synopsis "System for building, distributing, and running sandboxed desktop
|
||||||
applications")
|
applications")
|
||||||
(description "Flatpak is a system for building, distributing, and running
|
(description "Flatpak is a system for building, distributing, and running
|
||||||
sandboxed desktop applications on GNU/Linux.")
|
sandboxed desktop applications on GNU/Linux.")
|
||||||
(license license:lgpl2.1+)))
|
(license license:lgpl2.1+)))
|
||||||
|
|
Reference in New Issue