mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-01 00:52:55 -05:00
gnu: Add flux.
* gnu/packages/graphics.scm (flux): New variable. Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
parent
1a6bc33d3f
commit
d54fb33ace
1 changed files with 26 additions and 0 deletions
|
@ -99,6 +99,32 @@ (define-module (gnu packages graphics)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix utils))
|
||||
|
||||
(define-public flux
|
||||
(package
|
||||
(name "flux")
|
||||
(version "1.4.4")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri
|
||||
(git-reference
|
||||
(url "https://github.com/deniskropp/flux.git")
|
||||
(commit "e45758a")))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "11f3ypg0sdq5kj69zgz6kih1yrzgm48r16spyvzwvlswng147410"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(("autoconf" ,autoconf)
|
||||
("automake" ,automake)
|
||||
("libtool" ,libtool)
|
||||
("pkg-config" ,pkg-config)))
|
||||
(synopsis "Interface description language")
|
||||
(description "Flux is an interface description language used by DirectFB.
|
||||
Fluxcomp compiles .flux files to .cpp or .c files.")
|
||||
(home-page "http://www.directfb.org/")
|
||||
(license license:lgpl2.1+))) ; Same as DirectFB
|
||||
|
||||
(define-public fox
|
||||
(package
|
||||
(name "fox")
|
||||
|
|
Loading…
Reference in a new issue